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
83 lines
1.5 KiB
Nix
83 lines
1.5 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cargo,
|
|
desktop-file-utils,
|
|
gnome-desktop,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
polkit,
|
|
rustc,
|
|
rustPlatform,
|
|
wrapGAppsHook4,
|
|
gdk-pixbuf,
|
|
glib,
|
|
adwaita-icon-theme,
|
|
gtk4,
|
|
libadwaita,
|
|
openssl,
|
|
nix-update-script,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "e-imzo-manager";
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xinux-org";
|
|
repo = "e-imzo-manager";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-JXALTSgxIULDHdw90RjxlNQiLT+GKrzpkqPlMY0h+8c=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoVendor {
|
|
inherit (finalAttrs) pname version src;
|
|
hash = "sha256-x9V0FHrSpM1pIWjDjcTuhPz4p0blXxKDJVvT0I0Op9M=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
cargo
|
|
rustPlatform.cargoSetupHook
|
|
rustc
|
|
desktop-file-utils
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
gdk-pixbuf
|
|
glib
|
|
gnome-desktop
|
|
adwaita-icon-theme
|
|
gtk4
|
|
libadwaita
|
|
openssl
|
|
rustPlatform.bindgenHook
|
|
polkit
|
|
];
|
|
|
|
propagatedUserEnvPkgs = [ polkit ];
|
|
|
|
postInstall = ''
|
|
gappsWrapperArgs+=(
|
|
--suffix PATH : ${lib.makeBinPath finalAttrs.propagatedUserEnvPkgs}
|
|
)
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/xinux-org/e-imzo-manager";
|
|
mainProgram = "E-IMZO-Manager";
|
|
description = "GTK application for managing E-IMZO keys";
|
|
license = with lib.licenses; [ agpl3Plus ];
|
|
platforms = lib.platforms.linux;
|
|
teams = [ lib.teams.uzinfocom ];
|
|
};
|
|
})
|