nixpkgs/pkgs/tools/misc/renameutils/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
570 B
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{lib, stdenv, fetchurl, readline}:
2013-03-25 12:19:35 +01:00
stdenv.mkDerivation rec {
pname = "renameutils";
version = "0.12.0";
2013-03-25 12:19:35 +01:00
src = fetchurl {
url = "mirror://savannah/renameutils/renameutils-${version}.tar.gz";
2013-03-25 12:19:35 +01:00
sha256 = "18xlkr56jdyajjihcmfqlyyanzyiqqlzbhrm6695mkvw081g1lnb";
};
patches = [ ./install-exec.patch ];
nativeBuildInputs = [ readline ];
meta = {
homepage = "https://www.nongnu.org/renameutils/";
2013-03-25 12:19:35 +01:00
description = "A set of programs to make renaming of files faster";
2021-01-15 10:19:50 +01:00
platforms = lib.platforms.unix;
license = lib.licenses.gpl2Plus;
2013-03-25 12:19:35 +01:00
};
}