dfa36eda92
* Fix cross-compilation of libksba. This explicitly points libksba configure script at the correct prefix for libgpgerror with dev tools. It also provides a build-system compiler so that the asn1-gentables.c build helper can be compiled and run on the build system.
33 lines
856 B
Nix
33 lines
856 B
Nix
{ buildPackages, 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 = [ gettext ];
|
|
propagatedBuildInputs = [ libgpgerror ];
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
configureFlags = [ "--with-libgpg-error-prefix=${libgpgerror.dev}" ];
|
|
|
|
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 ];
|
|
};
|
|
}
|