python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / rename / default.nix
bloba8b5f4a54ace97eb9ee2a351647d54fec4738bcc
1 { lib, fetchFromGitHub, perlPackages }:
3 perlPackages.buildPerlPackage rec {
4   pname = "rename";
5   version = "1.11";
6   outputs = [ "out" ];
7   src = fetchFromGitHub {
8     owner = "pstray";
9     repo = "rename";
10     rev = "v${version}";
11     sha256 = "SK6wS3IxjCftuDiiZU27TFnn9GVd137zmzvGH88cNLI=";
12   };
13   meta = with lib; {
14     description = "Rename files according to a Perl rewrite expression";
15     homepage = "https://github.com/pstray/rename";
16     maintainers = with maintainers; [ mkg cyplo ];
17     license = with licenses; [ gpl1Plus ];
18   };