43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
|
{ stdenv, intltool, fetchurl, vala
|
||
|
, pkgconfig, gtk3, glib, hicolor_icon_theme
|
||
|
, makeWrapper, itstool, gnupg, libsoup
|
||
|
, gnome3, librsvg, gdk_pixbuf, gpgme
|
||
|
, libsecret, avahi, p11_kit }:
|
||
|
|
||
|
let
|
||
|
majVer = "3.14";
|
||
|
in stdenv.mkDerivation rec {
|
||
|
name = "seahorse-${majVer}.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://gnome/sources/seahorse/${majVer}/${name}.tar.xz";
|
||
|
sha256 = "14syy2qxxrim220aj64mbp76jbrrc6wmdwc4lfl4sngsh84qjah9";
|
||
|
};
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
|
||
|
|
||
|
NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
|
||
|
|
||
|
buildInputs = [ pkgconfig gtk3 glib intltool itstool gnome3.gcr
|
||
|
gnome3.gsettings_desktop_schemas makeWrapper gnupg
|
||
|
gdk_pixbuf gnome3.adwaita-icon-theme librsvg gpgme
|
||
|
libsecret avahi libsoup p11_kit vala gnome3.gcr
|
||
|
hicolor_icon_theme gnome3.adwaita-icon-theme ];
|
||
|
|
||
|
preFixup = ''
|
||
|
wrapProgram "$out/bin/seahorse" \
|
||
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
|
||
|
--prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = https://wiki.gnome.org/Apps/Seahorse;
|
||
|
description = "Application for managing encryption keys and passwords in the GnomeKeyring";
|
||
|
maintainers = with maintainers; [ lethalman ];
|
||
|
license = licenses.gpl2;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|