biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / filesystems / file-rename / default.nix
blobe2e1eccae216bb3a1d6c09cde4e385813d670af2
1 { lib, stdenv, fetchurl, perl, perlPackages }:
3 perlPackages.buildPerlPackage {
4   pname = "File-Rename";
5   version = "0.20";
7   src = fetchurl {
8     url = "mirror://cpan/authors/id/R/RM/RMBARKER/File-Rename-0.20.tar.gz";
9     sha256 = "1cf6xx2hiy1xalp35fh8g73j67r0w0g66jpcbc6971x9jbm7bvjy";
10   };
12   # Fix an incorrect platform test that misidentifies Darwin as Windows
13   postPatch = ''
14     substituteInPlace Makefile.PL \
15       --replace '/win/i' '/MSWin32/'
16   '';
18   postFixup = ''
19     substituteInPlace $out/bin/rename \
20       --replace "#!${perl}/bin/perl" "#!${perl}/bin/perl -I $out/${perl.libPrefix}"
21   '';
23   doCheck = !stdenv.hostPlatform.isDarwin;
25   meta = with lib; {
26     description = "Perl extension for renaming multiple files";
27     license = licenses.artistic1;
28     maintainers = with maintainers; [ peterhoeg ];
29     mainProgram = "rename";
30   };