2016-09-18 20:35:23 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gnupg, p11_kit, glib
|
|
|
|
, libgcrypt, libtasn1, dbus_glib, gtk, pango, gdk_pixbuf, atk
|
|
|
|
, gobjectIntrospection, makeWrapper, libxslt, vala_0_32, gnome3 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
2017-09-27 10:25:50 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-09-28 17:32:57 +01:00
|
|
|
|
2017-07-18 14:54:47 +01:00
|
|
|
buildInputs = let
|
|
|
|
gpg = gnupg.override { guiSupport = false; }; # prevent build cycle with pinentry_gnome
|
|
|
|
in [
|
2017-10-03 18:46:39 +01:00
|
|
|
intltool gpg gobjectIntrospection libxslt
|
2017-07-18 00:44:55 +01:00
|
|
|
libgcrypt libtasn1 dbus_glib pango gdk_pixbuf atk makeWrapper vala_0_32
|
2016-09-18 20:35:23 +01:00
|
|
|
];
|
|
|
|
|
2017-07-18 00:44:55 +01:00
|
|
|
propagatedBuildInputs = [ glib gtk p11_kit ];
|
2016-09-18 20:35:23 +01: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;
|
|
|
|
};
|
|
|
|
}
|