Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9dedda16e9db
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9e44b46bab02
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 26, 2018

  1. dex: 0.7 -> 0.8.0 (#45639)

    Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
    kyrias authored and xeji committed Aug 26, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Moser-ss Stephane Moser
    Copy the full SHA
    9e44b46 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/tools/X11/dex/default.nix
5 changes: 3 additions & 2 deletions pkgs/tools/X11/dex/default.nix
Original file line number Diff line number Diff line change
@@ -3,16 +3,17 @@
stdenv.mkDerivation rec {
program = "dex";
name = "${program}-${version}";
version = "0.7";
version = "0.8.0";

src = fetchFromGitHub {
owner = "jceb";
repo = program;
rev = "v${version}";
sha256 = "041ms01snalapapaniabr92d8iim1qrxian626nharjmp2rd69v5";
sha256 = "13dkjd1373mbvskrdrp0865llr3zvdr90sc6a6jqswh3crmgmz4k";
};

propagatedBuildInputs = [ python3 ];
nativeBuildInputs = [ python3.pkgs.sphinx ];
makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ];

meta = {