2021-01-15 09:19:50 +00:00
|
|
|
{lib, stdenv, fetchurl, readline}:
|
2013-03-25 11:19:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-07-13 21:36:41 +01:00
|
|
|
name = "renameutils-0.12.0";
|
2013-03-25 11:19:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "mirror://savannah/renameutils/renameutils-0.12.0.tar.gz";
|
2013-03-25 11:19:35 +00:00
|
|
|
sha256 = "18xlkr56jdyajjihcmfqlyyanzyiqqlzbhrm6695mkvw081g1lnb";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./install-exec.patch ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ readline ];
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01: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
|
|
|
};
|
|
|
|
}
|