201f6600cb
Fixes the build. This package is probably ripe for removal by now, as dirmngr was incorporated into gnupg a couple of years ago: https://lists.gnupg.org/pipermail/gnupg-announce/2014q4/000358.html
11 lines
355 B
Nix
11 lines
355 B
Nix
{ stdenv, fetchurl, libgpgerror, libgcrypt, libassuan, libksba, pth, openldap }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dirmngr-1.1.1";
|
|
src = fetchurl {
|
|
url = "mirror://gnupg/dirmngr/${name}.tar.bz2";
|
|
sha256 = "1zz6m87ca55nq5f59hzm6qs48d37h93il881y7d0rf2d6660na6j";
|
|
};
|
|
buildInputs = [ libgpgerror libgcrypt libassuan libksba pth openldap ];
|
|
}
|