gpg/pth: fixing the pth building on arm
I could built pth with the fix commented in: http://forums.gentoo.org/viewtopic-t-904280-start-0.html And I remove the 'pth.supported' structure I had built.
This commit is contained in:
@@ -1,5 +1,15 @@
|
||||
{ stdenv, fetchurl, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan }:
|
||||
{ stdenv, fetchurl, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan
|
||||
, useGnupg1 ? false, gnupg1 ? null }:
|
||||
|
||||
assert useGnupg1 -> gnupg1 != null;
|
||||
assert !useGnupg1 -> gnupg != null;
|
||||
|
||||
let
|
||||
gpgPath = if useGnupg1 then
|
||||
"${gnupg1}/bin/gpg"
|
||||
else
|
||||
"${gnupg}/bin/gpg2";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gpgme-1.3.1";
|
||||
|
||||
@@ -8,10 +18,9 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1m7l7nicn6gd952cgspv9xr8whqivbg33nbg8kbpj3dffnl2gvqm";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ libgpgerror glib libassuan ]
|
||||
++ stdenv.lib.optional pth.supported pth;
|
||||
propagatedBuildInputs = [ libgpgerror glib libassuan pth ];
|
||||
|
||||
buildNativeInputs = [ pkgconfig ];
|
||||
|
||||
configureFlags = "--with-gpg=${gnupg}/bin/gpg2";
|
||||
configureFlags = "--with-gpg=${gpgPath}";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user