2022-03-30 09:31:56 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, stdenv
|
|
|
|
, acl
|
2022-10-21 18:38:19 +00:00
|
|
|
, glibmm_2_68
|
|
|
|
, gtkmm4
|
2022-03-30 09:31:56 +00:00
|
|
|
, meson
|
2024-07-27 06:49:29 +00:00
|
|
|
, nautilus
|
2022-03-30 09:31:56 +00:00
|
|
|
, ninja
|
|
|
|
, pkg-config
|
2022-10-21 18:38:19 +00:00
|
|
|
, itstool
|
|
|
|
, wrapGAppsHook4
|
|
|
|
, gtk4
|
2022-03-30 09:31:56 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "eiciel";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "0.10.1";
|
2022-03-30 09:31:56 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "nautilusExtension" ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rofirrim";
|
|
|
|
repo = "eiciel";
|
|
|
|
rev = version;
|
2024-09-19 14:19:46 +00:00
|
|
|
sha256 = "sha256-gpuxx1Ts9HCO+3C+Z3k1tVA+1Mip8/Bd+FvWisVdsVY=";
|
2022-03-30 09:31:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
2022-10-21 18:38:19 +00:00
|
|
|
itstool
|
|
|
|
wrapGAppsHook4
|
|
|
|
gtk4
|
2022-03-30 09:31:56 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
acl
|
2022-10-21 18:38:19 +00:00
|
|
|
glibmm_2_68
|
|
|
|
gtkmm4
|
2024-07-27 06:49:29 +00:00
|
|
|
nautilus
|
2022-03-30 09:31:56 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
mesonFlags = [
|
2022-10-21 18:38:19 +00:00
|
|
|
"-Dnautilus-extension-dir=${placeholder "nautilusExtension"}/lib/nautilus/extensions-4"
|
2022-03-30 09:31:56 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Graphical editor for ACLs and extended attributes";
|
|
|
|
homepage = "https://rofi.roger-ferrer.org/eiciel/";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ sersorrel ];
|
|
|
|
platforms = platforms.linux;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "eiciel";
|
2022-03-30 09:31:56 +00:00
|
|
|
};
|
|
|
|
}
|