mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
21b81f41ae
see issue #43716
22 lines
550 B
Nix
22 lines
550 B
Nix
{stdenv, fetchurl, readline}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "renameutils-0.12.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://savannah/renameutils/renameutils-0.12.0.tar.gz;
|
|
sha256 = "18xlkr56jdyajjihcmfqlyyanzyiqqlzbhrm6695mkvw081g1lnb";
|
|
};
|
|
|
|
patches = [ ./install-exec.patch ];
|
|
|
|
nativeBuildInputs = [ readline ];
|
|
|
|
meta = {
|
|
homepage = http://www.nongnu.org/renameutils/;
|
|
description = "A set of programs to make renaming of files faster";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|