nixpkgs/pkgs/desktops/gnome-3/apps/seahorse/default.nix

49 lines
1.2 KiB
Nix
Raw Normal View History

2018-09-05 00:52:16 +00:00
{ stdenv, fetchurl, vala, meson, ninja
, pkgconfig, gtk3, glib, gobject-introspection
, wrapGAppsHook, itstool, gnupg, libsoup
2018-12-25 22:41:02 +00:00
, gnome3, gpgme, python3, openldap, gcr
, libsecret, avahi, p11-kit, openssh }:
2018-12-12 18:55:47 +00:00
stdenv.mkDerivation rec {
2018-03-22 18:52:39 +00:00
pname = "seahorse";
2018-12-12 18:55:47 +00:00
version = "3.30.1.1";
src = fetchurl {
2018-12-12 18:55:47 +00:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "12x7xmwh62yl0ax90v8nkx3jqzviaz9hz2g56yml78wzww20gawy";
};
doCheck = true;
2018-09-05 00:52:16 +00:00
nativeBuildInputs = [
meson ninja pkgconfig vala itstool wrapGAppsHook
python3 gobject-introspection
2018-09-05 00:52:16 +00:00
];
2018-03-22 18:52:39 +00:00
buildInputs = [
2018-12-25 22:41:02 +00:00
gtk3 glib gcr
2018-03-22 18:52:39 +00:00
gnome3.gsettings-desktop-schemas gnupg
2019-02-13 21:47:50 +00:00
gnome3.adwaita-icon-theme gpgme
2018-03-22 18:52:39 +00:00
libsecret avahi libsoup p11-kit
2018-09-05 00:52:16 +00:00
openssh openldap
2018-03-22 18:52:39 +00:00
];
2018-09-05 00:52:16 +00:00
postPatch = ''
patchShebangs build-aux/
'';
2018-03-22 18:52:39 +00:00
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;
};
}