37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, intltool, fetchurl, vala
|
|
, pkgconfig, gtk3, glib
|
|
, wrapGAppsHook, itstool, gnupg, libsoup
|
|
, gnome3, librsvg, gdk_pixbuf, gpgme
|
|
, libsecret, avahi, p11_kit, openssh }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
doCheck = true;
|
|
|
|
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gtk3 glib intltool itstool gnome3.gcr
|
|
gnome3.gsettings_desktop_schemas wrapGAppsHook gnupg
|
|
gdk_pixbuf gnome3.defaultIconTheme librsvg gpgme
|
|
libsecret avahi libsoup p11_kit vala
|
|
openssh ];
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share"
|
|
)
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://wiki.gnome.org/Apps/Seahorse;
|
|
description = "Application for managing encryption keys and passwords in the GnomeKeyring";
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|