nixpkgs/pkgs/development/libraries/libksba/default.nix

32 lines
803 B
Nix
Raw Normal View History

{ buildPackages, stdenv, fetchurl, gettext, libgpgerror }:
stdenv.mkDerivation rec {
2016-09-24 19:14:02 +02:00
name = "libksba-1.3.5";
src = fetchurl {
url = "mirror://gnupg/libksba/${name}.tar.bz2";
2016-09-24 19:14:02 +02:00
sha256 = "0h53q4sns1jz1pkmhcz5wp9qrfn9f5g9i3vjv6dafwzzlvblyi21";
};
outputs = [ "out" "dev" "info" ];
2016-09-19 14:54:20 +02:00
buildInputs = [ gettext ];
2014-10-28 23:43:07 +01:00
propagatedBuildInputs = [ libgpgerror ];
depsBuildBuild = [ buildPackages.stdenv.cc ];
configureFlags = [ "--with-libgpg-error-prefix=${libgpgerror.dev}" ];
2016-09-19 14:54:20 +02:00
postInstall = ''
mkdir -p $dev/bin
mv $out/bin/*-config $dev/bin/
rmdir --ignore-fail-on-non-empty $out/bin
'';
2014-10-28 23:43:07 +01:00
meta = with stdenv.lib; {
homepage = https://www.gnupg.org;
description = "CMS and X.509 access library";
2014-10-28 23:43:07 +01:00
platforms = platforms.all;
license = licenses.lgpl3;
};
}