5cc18c4781
Standard library now contains stdenv.lib.versions.majorMinor, which does the same.
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ stdenv, intltool, fetchurl, vala
|
|
, pkgconfig, gtk3, glib
|
|
, wrapGAppsHook, itstool, gnupg, libsoup
|
|
, gnome3, gpgme
|
|
, libsecret, avahi, p11-kit, openssh }:
|
|
|
|
let
|
|
pname = "seahorse";
|
|
version = "3.20.0";
|
|
in stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "e2b07461ed54a8333e5628e9b8e517ec2b731068377bf376570aad998274c6df";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
|
|
|
|
nativeBuildInputs = [ pkgconfig vala intltool itstool wrapGAppsHook ];
|
|
buildInputs = [
|
|
gtk3 glib gnome3.gcr
|
|
gnome3.gsettings-desktop-schemas gnupg
|
|
gnome3.defaultIconTheme gpgme
|
|
libsecret avahi libsoup p11-kit
|
|
openssh
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|