2019-03-03 18:56:59 +00:00
|
|
|
{ stdenv, fetchurl, vala, meson, ninja, libpwquality
|
2018-12-02 11:41:15 +00:00
|
|
|
, pkgconfig, gtk3, glib, gobject-introspection
|
2017-05-26 07:00:58 +00:00
|
|
|
, wrapGAppsHook, itstool, gnupg, libsoup
|
2018-12-25 22:41:02 +00:00
|
|
|
, gnome3, gpgme, python3, openldap, gcr
|
2019-04-17 00:38:26 +00:00
|
|
|
, libsecret, avahi, p11-kit, openssh, gsettings-desktop-schemas }:
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2018-12-12 18:55:47 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-22 18:52:39 +00:00
|
|
|
pname = "seahorse";
|
2019-03-03 18:56:59 +00:00
|
|
|
version = "3.32";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-12 18:55:47 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-03-03 18:56:59 +00:00
|
|
|
sha256 = "1wxcxq6ahlwab8dr83gqml67y95mnk56hsgw19d4h0xjvyz2ym52";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2016-09-18 19:35:23 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2018-09-05 00:52:16 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson ninja pkgconfig vala itstool wrapGAppsHook
|
2018-12-02 11:41:15 +00:00
|
|
|
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
|
2019-04-17 00:38:26 +00:00
|
|
|
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
|
2019-03-03 18:56:59 +00:00
|
|
|
openssh openldap libpwquality
|
2018-03-22 18:52:39 +00:00
|
|
|
];
|
2016-09-18 19:35:23 +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}";
|
|
|
|
};
|
|
|
|
};
|
2016-09-18 19:35:23 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|