2010-05-19 21:58:56 +01:00
|
|
|
{ stdenv, fetchurl, libgpgerror }:
|
2009-03-03 13:27:40 +00:00
|
|
|
|
2008-01-28 19:44:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-05-14 07:25:36 +01:00
|
|
|
name = "libksba-1.3.4";
|
2008-01-28 19:44:20 +00:00
|
|
|
|
2009-03-03 13:27:40 +00:00
|
|
|
src = fetchurl {
|
2010-05-19 21:58:56 +01:00
|
|
|
url = "mirror://gnupg/libksba/${name}.tar.bz2";
|
2016-05-14 07:25:36 +01:00
|
|
|
sha256 = "0kxdb02z41cwm1xbwfwj9nbc0dzjhwyq8c475mlhhmpcxcy8ihpn";
|
2009-03-03 13:27:40 +00:00
|
|
|
};
|
2008-01-28 19:44:20 +00:00
|
|
|
|
2014-10-28 22:43:07 +00:00
|
|
|
propagatedBuildInputs = [ libgpgerror ];
|
2008-01-28 19:44:20 +00:00
|
|
|
|
2014-10-28 22:43:07 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-05-14 07:25:36 +01:00
|
|
|
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 ];
|
2009-03-03 13:27:40 +00:00
|
|
|
};
|
2008-01-28 19:44:20 +00:00
|
|
|
}
|