about summary refs log tree commit diff
path: root/pkgs/development/libraries/libksba/default.nix
blob: 9171471882ca3b83d5277be8a2ecd6787a7101e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, libgpgerror }:

stdenv.mkDerivation rec {
  name = "libksba-1.3.4";

  src = fetchurl {
    url = "mirror://gnupg/libksba/${name}.tar.bz2";
    sha256 = "0kxdb02z41cwm1xbwfwj9nbc0dzjhwyq8c475mlhhmpcxcy8ihpn";
  };

  propagatedBuildInputs = [ libgpgerror ];

  meta = with stdenv.lib; {
    homepage = https://www.gnupg.org;
    description = "CMS and X.509 access library";
    platforms = platforms.all;
    license = licenses.lgpl3;
    maintainers = with maintainers; [ wkennington ];
  };
}