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

30 lines
720 B
Nix
Raw Normal View History

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