summary refs log tree commit diff
path: root/pkgs/tools/misc/pinentry/default.nix
blob: 4ee840069752ef9f6428f56d42d1606502349bd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args:
args.stdenv.mkDerivation {
  name = "pinentry-0.7.2";

  src = args.fetchurl {
    url = http://gentoo.chem.wisc.edu/gentoo/distfiles/pinentry-0.7.2.tar.gz;
    sha256 = "0s6n5n4bxg95rmwa3mw3r49dabf8yh6fkpfi8mbl7i85dgpibnzv";
  };

  buildInputs =(with args; [glib pkgconfig x11 gtk]);

  meta = { 
      description = "input interface for passwords needed by  gnupg";
      homepage = "don't know, gentoo lists http://www.gnupg.org/aegypten/";
      license = "GPL2";
  };
}