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

32 lines
805 B
Nix
Raw Normal View History

{ buildPackages, lib, stdenv, fetchurl, gettext, libgpg-error }:
stdenv.mkDerivation rec {
2021-04-30 18:22:38 +00:00
name = "libksba-1.5.1";
src = fetchurl {
url = "mirror://gnupg/libksba/${name}.tar.bz2";
2021-04-30 18:22:38 +00:00
sha256 = "sha256-sPTGXk5EfZojSfa4wOd6KL6VMeRUi6AsVF0fRtx7+SE=";
};
outputs = [ "out" "dev" "info" ];
2016-09-19 12:54:20 +00:00
buildInputs = [ gettext ];
propagatedBuildInputs = [ libgpg-error ];
depsBuildBuild = [ buildPackages.stdenv.cc ];
configureFlags = [ "--with-libgpg-error-prefix=${libgpg-error.dev}" ];
2016-09-19 12:54:20 +00:00
postInstall = ''
mkdir -p $dev/bin
mv $out/bin/*-config $dev/bin/
rmdir --ignore-fail-on-non-empty $out/bin
'';
meta = with lib; {
homepage = "https://www.gnupg.org";
description = "CMS and X.509 access library";
2014-10-28 22:43:07 +00:00
platforms = platforms.all;
license = licenses.lgpl3;
};
}