2013-03-25 11:19:35 +00:00
|
|
|
{stdenv, fetchurl, readline}:
|
|
|
|
|
|
|
|
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";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2018-08-06 11:20:53 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2013-03-25 11:19:35 +00:00
|
|
|
};
|
|
|
|
}
|