summary refs log tree commit diff
path: root/pkgs/development/libraries/libksba/default.nix
blob: 3f7a4bed9cc9bbd5577fdfa84eefe6335cb5085a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl, gettext, libgpgerror }:

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

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

  outputs = [ "out" "dev" "info" ];

  buildInputs = stdenv.lib.optional stdenv.isDarwin gettext;
  propagatedBuildInputs = [ libgpgerror ];

  postInstall = ''
    mkdir -p $dev/bin
    mv $out/bin/*-config $dev/bin/
    rmdir --ignore-fail-on-non-empty $out/bin
  '';

  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 ];
  };
}