2018-02-05 21:14:07 +01:00
|
|
|
{ stdenv, fetchurl, gettext, libgpgerror }:
|
2009-03-03 14:27:40 +01:00
|
|
|
|
2008-01-28 20:44:20 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-09-24 19:14:02 +02:00
|
|
|
name = "libksba-1.3.5";
|
2008-01-28 20:44:20 +01:00
|
|
|
|
2009-03-03 14:27:40 +01:00
|
|
|
src = fetchurl {
|
2010-05-19 22:58:56 +02:00
|
|
|
url = "mirror://gnupg/libksba/${name}.tar.bz2";
|
2016-09-24 19:14:02 +02:00
|
|
|
sha256 = "0h53q4sns1jz1pkmhcz5wp9qrfn9f5g9i3vjv6dafwzzlvblyi21";
|
2009-03-03 14:27:40 +01:00
|
|
|
};
|
2008-01-28 20:44:20 +01:00
|
|
|
|
2017-07-11 11:14:14 +02:00
|
|
|
outputs = [ "out" "dev" "info" ];
|
2016-09-19 14:54:20 +02:00
|
|
|
|
2018-02-05 21:14:07 +01:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin gettext;
|
2014-10-28 23:43:07 +01:00
|
|
|
propagatedBuildInputs = [ libgpgerror ];
|
2008-01-28 20:44:20 +01:00
|
|
|
|
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; {
|
2016-05-14 08:25:36 +02:00
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2009-03-03 14:27:40 +01:00
|
|
|
};
|
2008-01-28 20:44:20 +01:00
|
|
|
}
|