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

21 lines
533 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libgpgerror }:
stdenv.mkDerivation rec {
2015-04-13 07:59:51 +02:00
name = "libksba-1.3.3";
src = fetchurl {
url = "mirror://gnupg/libksba/${name}.tar.bz2";
2015-04-13 07:59:51 +02:00
sha256 = "11kp3h9l3b8ikydkcdkwgx45r662zi30m26ra5llyhfh6kz5yzqc";
};
2014-10-28 23:43:07 +01:00
propagatedBuildInputs = [ libgpgerror ];
2014-10-28 23:43:07 +01:00
meta = with stdenv.lib; {
homepage = http://www.gnupg.org;
description = "CMS and X.509 access library under development";
2014-10-28 23:43:07 +01:00
platforms = platforms.all;
license = licenses.lgpl3;
maintainers = with maintainers; [ wkennington ];
};
}