2016-09-18 21:35:23 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gnupg, p11_kit, glib
|
|
|
|
, libgcrypt, libtasn1, dbus_glib, gtk, pango, gdk_pixbuf, atk
|
2017-10-04 23:50:14 +02:00
|
|
|
, gobjectIntrospection, makeWrapper, libxslt, vala, gnome3 }:
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
2017-09-27 11:25:50 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2017-10-04 23:50:14 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection libxslt makeWrapper vala ];
|
2017-09-28 18:32:57 +02:00
|
|
|
|
2017-07-18 15:54:47 +02:00
|
|
|
buildInputs = let
|
|
|
|
gpg = gnupg.override { guiSupport = false; }; # prevent build cycle with pinentry_gnome
|
|
|
|
in [
|
2017-10-04 23:50:14 +02:00
|
|
|
gpg libgcrypt libtasn1 dbus_glib pango gdk_pixbuf atk
|
2016-09-18 21:35:23 +02:00
|
|
|
];
|
|
|
|
|
2017-07-18 01:44:55 +02:00
|
|
|
propagatedBuildInputs = [ glib gtk p11_kit ];
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
#doCheck = true;
|
|
|
|
|
|
|
|
#enableParallelBuilding = true; issues on hydra
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
wrapProgram "$out/bin/gcr-viewer" \
|
|
|
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
};
|
|
|
|
}
|