2010-05-19 20:58:56 +00:00
|
|
|
{ stdenv, fetchurl, libgpgerror }:
|
2009-03-03 13:27:40 +00:00
|
|
|
|
2008-01-28 19:44:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-13 05:59:51 +00:00
|
|
|
name = "libksba-1.3.3";
|
2008-01-28 19:44:20 +00:00
|
|
|
|
2009-03-03 13:27:40 +00:00
|
|
|
src = fetchurl {
|
2010-05-19 20:58:56 +00:00
|
|
|
url = "mirror://gnupg/libksba/${name}.tar.bz2";
|
2015-04-13 05:59:51 +00:00
|
|
|
sha256 = "11kp3h9l3b8ikydkcdkwgx45r662zi30m26ra5llyhfh6kz5yzqc";
|
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; {
|
2009-03-03 13:27:40 +00:00
|
|
|
homepage = http://www.gnupg.org;
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "CMS and X.509 access library under development";
|
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
|
|
|
}
|