mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
18 lines
586 B
Nix
18 lines
586 B
Nix
{ stdenv, fetchFromGitHub, buildPerlPackage }:
|
|
|
|
buildPerlPackage rec {
|
|
name = "rename-${version}";
|
|
version = "1.9";
|
|
src = fetchFromGitHub {
|
|
owner = "pstray";
|
|
repo = "rename";
|
|
rev = "d46f1d0ced25dc5849acb5d5974a3e2e9d97d536";
|
|
sha256 = "0qahs1cqfaci2hdf1xncrz4k0z5skkfr43apnm3kybs7za33apzw";
|
|
};
|
|
meta = with stdenv.lib; {
|
|
description = "Rename files according to a Perl rewrite expression";
|
|
homepage = http://search.cpan.org/~pederst/rename-1.9/bin/rename.PL;
|
|
maintainers = with maintainers; [ mkg ];
|
|
license = with licenses; [ gpl1Plus ];
|
|
};
|
|
}
|