mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
f6159b9095
Application for managing encryption keys and passwords in the GnomeKeyring https://wiki.gnome.org/Apps/Seahorse
42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{ stdenv, intltool, fetchurl
|
|
, pkgconfig, gtk3, glib, hicolor_icon_theme
|
|
, makeWrapper, itstool, gnupg, libsoup
|
|
, gnome3, librsvg, gdk_pixbuf, gpgme
|
|
, libsecret, avahi, p11_kit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "seahorse-3.10.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/seahorse/3.10/${name}.tar.xz";
|
|
sha256 = "89cabf19f77a55f220bc61a3b97e4db845a0980f0f1d9c66147cc9a4ced8cd16";
|
|
};
|
|
|
|
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.gnome_icon_theme librsvg gpgme
|
|
libsecret avahi libsoup p11_kit
|
|
hicolor_icon_theme gnome3.gnome_icon_theme_symbolic ];
|
|
|
|
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"
|
|
rm $out/share/icons/hicolor/icon-theme.cache
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|