Added libksba
svn path=/nixpkgs/branches/stdenv-updates/; revision=10191
This commit is contained in:
parent
66cba1e312
commit
8e119adbb9
|
@ -0,0 +1,19 @@
|
|||
args: with args;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libksba-1.0.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.gnupg.org/gcrypt/libksba/${name}.tar.bz2";
|
||||
sha256 = "1jkjh1daaykkrfq0s4vv8ddf0w8agdvspg9qm0ghjidlrfnsfiwh";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [libgpgerror];
|
||||
|
||||
configureFlags = "--enable-shared --disable-static";
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gnupg.org;
|
||||
description = "Libksba is a CMS and X.509 access library under
|
||||
development";
|
||||
};
|
||||
}
|
|
@ -2128,6 +2128,10 @@ rec {
|
|||
static = true;
|
||||
}));
|
||||
|
||||
libksba = import ../development/libraries/libksba {
|
||||
inherit fetchurl stdenv libgpgerror;
|
||||
};
|
||||
|
||||
libmad = import ../development/libraries/libmad {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue