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: 2f826ef26f0c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1035af4789be
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 5, 2017

  1. pass: 1.7 -> 1.7.1

    calvertvl committed May 5, 2017
    Copy the full SHA
    9bc0b12 View commit details

Commits on May 6, 2017

  1. Merge pull request #25545 from calvertvl/update-pass-1.7.1

    pass: 1.7 -> 1.7.1
    joachifm authored May 6, 2017
    Copy the full SHA
    1035af4 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/security/pass/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/security/pass/default.nix
Original file line number Diff line number Diff line change
@@ -13,15 +13,15 @@ assert x11Support -> xclip != null
&& dmenu != null;

stdenv.mkDerivation rec {
version = "1.7";
version = "1.7.1";
name = "password-store-${version}";

src = fetchurl {
url = "http://git.zx2c4.com/password-store/snapshot/${name}.tar.xz";
sha256 = "002mw7j0m33bw483rllzhcf41wp3ixka8yma6kqrfaj57jyw66hn";
sha256 = "0scqkpll2q8jhzcgcsh9kqz0gwdpvynivqjmmbzax2irjfaiklpn";
};

patches = [ ./set-correct-program-name-for-sleep.patch
patches = [ ./set-correct-program-name-for-sleep.patch
] ++ stdenv.lib.optional stdenv.isDarwin ./no-darwin-getopt.patch;

nativeBuildInputs = [ makeWrapper ];