3321e63b12
Conflicts: - pkgs/development/python-modules/sphinx-autobuild/default.nix
34 lines
904 B
Nix
34 lines
904 B
Nix
{ buildPackages, lib, stdenv, fetchurl, gettext, libgpg-error }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libksba";
|
|
version = "1.6.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnupg/libksba/libksba-${version}.tar.bz2";
|
|
hash = "sha256-XewDPSEVWTOIOMDElXxz39w+6G9zl31ieWQMnNCM5qQ=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "info" ];
|
|
|
|
buildInputs = [ gettext ];
|
|
propagatedBuildInputs = [ libgpg-error ];
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
configureFlags = [ "--with-libgpg-error-prefix=${libgpg-error.dev}" ];
|
|
|
|
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";
|
|
mainProgram = "ksba-config";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ ];
|
|
license = licenses.lgpl3;
|
|
};
|
|
}
|