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

49 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, vala, meson, ninja, libpwquality
, 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, gsettings-desktop-schemas }:
2018-12-12 18:55:47 +00:00
stdenv.mkDerivation rec {
2018-03-22 18:52:39 +00:00
pname = "seahorse";
version = "3.32";
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 = "1wxcxq6ahlwab8dr83gqml67y95mnk56hsgw19d4h0xjvyz2ym52";
};
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
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
openssh openldap libpwquality
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;
};
}