49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ stdenv, fetchurl, vala, meson, ninja
|
|
, pkgconfig, gtk3, glib, gobject-introspection
|
|
, wrapGAppsHook, itstool, gnupg, libsoup
|
|
, gnome3, gpgme, python3, openldap, gcr
|
|
, libsecret, avahi, p11-kit, openssh }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "seahorse";
|
|
version = "3.30.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "12x7xmwh62yl0ax90v8nkx3jqzviaz9hz2g56yml78wzww20gawy";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
nativeBuildInputs = [
|
|
meson ninja pkgconfig vala itstool wrapGAppsHook
|
|
python3 gobject-introspection
|
|
];
|
|
buildInputs = [
|
|
gtk3 glib gcr
|
|
gnome3.gsettings-desktop-schemas gnupg
|
|
gnome3.adwaita-icon-theme gpgme
|
|
libsecret avahi libsoup p11-kit
|
|
openssh openldap
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs build-aux/
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
attrPath = "gnome3.${pname}";
|
|
};
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|