86 lines
1.3 KiB
Nix
86 lines
1.3 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, fetchpatch
|
|
, vala
|
|
, meson
|
|
, ninja
|
|
, libpwquality
|
|
, pkg-config
|
|
, gtk3
|
|
, glib
|
|
, wrapGAppsHook
|
|
, itstool
|
|
, gnupg
|
|
, libsoup
|
|
, gnome3
|
|
, gpgme
|
|
, python3
|
|
, openldap
|
|
, gcr
|
|
, libsecret
|
|
, avahi
|
|
, p11-kit
|
|
, openssh
|
|
, gsettings-desktop-schemas
|
|
, libhandy
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "seahorse";
|
|
version = "3.38.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
hash = "sha256-x0XdHebhog8ZorB6Q4uO98yiNaaqc0ENt/E3sCHpsqI=";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
vala
|
|
itstool
|
|
wrapGAppsHook
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
glib
|
|
gcr
|
|
gsettings-desktop-schemas
|
|
gnupg
|
|
gnome3.adwaita-icon-theme
|
|
gpgme
|
|
libsecret
|
|
avahi
|
|
libsoup
|
|
p11-kit
|
|
openssh
|
|
openldap
|
|
libpwquality
|
|
libhandy
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs build-aux/
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
attrPath = "gnome3.${pname}";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wiki.gnome.org/Apps/Seahorse";
|
|
description = "Application for managing encryption keys and passwords in the GnomeKeyring";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|