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
62 lines
1006 B
Nix
62 lines
1006 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
acl,
|
|
glibmm_2_68,
|
|
gtkmm4,
|
|
meson,
|
|
nautilus,
|
|
ninja,
|
|
pkg-config,
|
|
itstool,
|
|
wrapGAppsHook4,
|
|
gtk4,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "eiciel";
|
|
version = "0.10.1";
|
|
|
|
outputs = [
|
|
"out"
|
|
"nautilusExtension"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rofirrim";
|
|
repo = "eiciel";
|
|
rev = version;
|
|
sha256 = "sha256-gpuxx1Ts9HCO+3C+Z3k1tVA+1Mip8/Bd+FvWisVdsVY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
itstool
|
|
wrapGAppsHook4
|
|
gtk4
|
|
];
|
|
|
|
buildInputs = [
|
|
acl
|
|
glibmm_2_68
|
|
gtkmm4
|
|
nautilus
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dnautilus-extension-dir=${placeholder "nautilusExtension"}/lib/nautilus/extensions-4"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Graphical editor for ACLs and extended attributes";
|
|
homepage = "https://rofi.roger-ferrer.org/eiciel/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "eiciel";
|
|
};
|
|
}
|