2019-10-03 21:13:51 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, fetchpatch
|
|
|
|
, vala
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, libpwquality
|
|
|
|
, pkgconfig
|
|
|
|
, gtk3
|
|
|
|
, glib
|
|
|
|
, wrapGAppsHook
|
|
|
|
, itstool
|
|
|
|
, gnupg
|
|
|
|
, libsoup
|
|
|
|
, gnome3
|
|
|
|
, gpgme
|
|
|
|
, python3
|
|
|
|
, openldap
|
|
|
|
, gcr
|
|
|
|
, 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";
|
2020-01-12 11:35:36 +00:00
|
|
|
version = "3.34.1";
|
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";
|
2020-01-12 11:35:36 +00:00
|
|
|
sha256 = "19c2zylwgycb5q9hal8rmflc2sywc5c2grpsfsq3rf37i9lfwynw";
|
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 = [
|
2019-10-03 21:13:51 +00:00
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
vala
|
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
python3
|
2018-09-05 00:52:16 +00:00
|
|
|
];
|
2019-10-03 21:13:51 +00:00
|
|
|
|
2018-03-22 18:52:39 +00:00
|
|
|
buildInputs = [
|
2019-10-03 21:13:51 +00:00
|
|
|
gtk3
|
|
|
|
glib
|
|
|
|
gcr
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
gnupg
|
|
|
|
gnome3.adwaita-icon-theme
|
|
|
|
gpgme
|
|
|
|
libsecret
|
|
|
|
avahi
|
|
|
|
libsoup
|
|
|
|
p11-kit
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|