nixpkgs/pkgs/development/libraries/libksba/default.nix
Tuomas Tynkkynen 1ff422aa23 treewide: Add man & info outputs where necessary (instead of doc)
Because man & info pages won't be going to $doc after the next commit.
Scripted change for the files having one-package-per-file.
2017-08-11 21:32:54 +03:00

29 lines
682 B
Nix

{ stdenv, fetchurl, libgpgerror }:
stdenv.mkDerivation rec {
name = "libksba-1.3.5";
src = fetchurl {
url = "mirror://gnupg/libksba/${name}.tar.bz2";
sha256 = "0h53q4sns1jz1pkmhcz5wp9qrfn9f5g9i3vjv6dafwzzlvblyi21";
};
outputs = [ "out" "dev" "info" ];
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 ];
};
}