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.
38 lines
1.3 KiB
Nix
38 lines
1.3 KiB
Nix
{lib, stdenv, fetchurl, readline, coreutils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "renameutils";
|
|
version = "0.12.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/renameutils/renameutils-${version}.tar.gz";
|
|
sha256 = "18xlkr56jdyajjihcmfqlyyanzyiqqlzbhrm6695mkvw081g1lnb";
|
|
};
|
|
|
|
patches = [ ./install-exec.patch ];
|
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
substituteInPlace src/apply.c \
|
|
--replace "command = \"mv\"" "command = \"${coreutils}/bin/mv\"" \
|
|
--replace "command = \"cp\"" "command = \"${coreutils}/bin/cp\""
|
|
substituteInPlace src/icmd.c \
|
|
--replace "#define MV_COMMAND \"mv\"" "#define MV_COMMAND \"${coreutils}/bin/mv\"" \
|
|
--replace "#define CP_COMMAND \"cp\"" "#define CP_COMMAND \"${coreutils}/bin/cp\""
|
|
substituteInPlace src/qcmd.c \
|
|
--replace "ls_program = xstrdup(\"ls\")" "ls_program = xstrdup(\"${coreutils}/bin/ls\")"
|
|
'';
|
|
|
|
nativeBuildInputs = [ readline ];
|
|
|
|
preConfigure = lib.optionalString (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) ''
|
|
export ac_cv_func_lstat64=no
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://www.nongnu.org/renameutils/";
|
|
description = "Set of programs to make renaming of files faster";
|
|
platforms = lib.platforms.unix;
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|