2022-11-18 08:11:19 +00:00
|
|
|
{lib, stdenv, fetchurl, readline, coreutils }:
|
2013-03-25 11:19:35 +00:00
|
|
|
|
2021-08-02 09:38:45 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "renameutils";
|
|
|
|
version = "0.12.0";
|
2013-03-25 11:19:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-02 09:38:45 +00:00
|
|
|
url = "mirror://savannah/renameutils/renameutils-${version}.tar.gz";
|
2013-03-25 11:19:35 +00:00
|
|
|
sha256 = "18xlkr56jdyajjihcmfqlyyanzyiqqlzbhrm6695mkvw081g1lnb";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./install-exec.patch ];
|
|
|
|
|
2022-11-18 08:11:19 +00:00
|
|
|
postPatch = lib.optionalString stdenv.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\")"
|
|
|
|
'';
|
|
|
|
|
2013-03-25 11:19:35 +00:00
|
|
|
nativeBuildInputs = [ readline ];
|
|
|
|
|
2022-11-18 08:11:19 +00:00
|
|
|
preConfigure = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) ''
|
|
|
|
export ac_cv_func_lstat64=no
|
|
|
|
'';
|
|
|
|
|
2013-03-25 11:19:35 +00:00
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.nongnu.org/renameutils/";
|
2013-03-25 11:19:35 +00:00
|
|
|
description = "A set of programs to make renaming of files faster";
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
license = lib.licenses.gpl2Plus;
|
2013-03-25 11:19:35 +00:00
|
|
|
};
|
|
|
|
}
|