Files
nixpkgs/pkgs/by-name/se/seahorse/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

117 lines
2.2 KiB
Nix
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
stdenv,
lib,
fetchurl,
vala,
meson,
ninja,
libpwquality,
pkg-config,
gtk3,
glib,
glib-networking,
wrapGAppsHook3,
itstool,
gnupg,
desktop-file-utils,
libsoup_3,
gnome,
gpgme,
python3,
openldap,
gcr,
libsecret,
avahi,
p11-kit,
openssh,
gsettings-desktop-schemas,
libhandy,
}:
stdenv.mkDerivation rec {
pname = "seahorse";
version = "47.0.1";
src = fetchurl {
url = "mirror://gnome/sources/seahorse/${lib.versions.major version}/seahorse-${version}.tar.xz";
hash = "sha256-nBkX5KYff+u3h4Sc42znF/znBsNGiAuZHQVtVNrbysw=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
vala
itstool
wrapGAppsHook3
python3
openssh
gnupg
desktop-file-utils
gcr
];
buildInputs = [
gtk3
glib
glib-networking
gcr
gsettings-desktop-schemas
gpgme
libsecret
avahi
libsoup_3
p11-kit
openldap
libpwquality
libhandy
];
doCheck = true;
postPatch = ''
patchShebangs build-aux/gpg_check_version.py
'';
env =
lib.optionalAttrs (stdenv.cc.isGNU && (lib.versionAtLeast (lib.getVersion stdenv.cc.cc) "14"))
{
NIX_CFLAGS_COMPILE = toString [
"-Wno-error=implicit-function-declaration"
"-Wno-error=int-conversion"
"-Wno-error=return-mismatch"
];
};
preCheck = ''
# Add org.gnome.crypto.pgp GSettings schema to path
# to make it available for gpgme-backend test.
# It is used by Seahorses internal common library.
addToSearchPath XDG_DATA_DIRS "${glib.getSchemaDataDirPath gcr}"
# The same test also requires home directory so that it can store settings.
export HOME=$TMPDIR
'';
preFixup = ''
gappsWrapperArgs+=(
# Pick up icons from Gcr
--prefix XDG_DATA_DIRS : "${gcr}/share"
)
'';
passthru = {
updateScript = gnome.updateScript {
packageName = "seahorse";
};
};
meta = with lib; {
homepage = "https://gitlab.gnome.org/GNOME/seahorse";
description = "Application for managing encryption keys and passwords in the GnomeKeyring";
mainProgram = "seahorse";
teams = [ teams.gnome ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}