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

86 lines
1.4 KiB
Nix
Raw Normal View History

{ 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
, libhandy
}:
2018-12-12 10:55:47 -08:00
stdenv.mkDerivation rec {
2018-03-22 11:52:39 -07:00
pname = "seahorse";
version = "3.38.0.1";
src = fetchurl {
2018-12-12 10:55:47 -08:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
hash = "sha256-x0XdHebhog8ZorB6Q4uO98yiNaaqc0ENt/E3sCHpsqI=";
};
doCheck = true;
2018-09-04 17:52:16 -07:00
nativeBuildInputs = [
meson
ninja
pkgconfig
vala
itstool
wrapGAppsHook
python3
2018-09-04 17:52:16 -07:00
];
2018-03-22 11:52:39 -07:00
buildInputs = [
gtk3
glib
gcr
gsettings-desktop-schemas
gnupg
gnome3.adwaita-icon-theme
gpgme
libsecret
avahi
libsoup
p11-kit
openssh
openldap
libpwquality
libhandy
2018-03-22 11:52:39 -07:00
];
2018-09-04 17:52:16 -07:00
postPatch = ''
patchShebangs build-aux/
'';
2018-03-22 11:52:39 -07: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 = teams.gnome.members;
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}