mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 14:43:37 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
58 lines
1009 B
Nix
58 lines
1009 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 = with maintainers; [ sersorrel ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "eiciel";
|
|
};
|
|
}
|