0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-09 20:16:16 +03:00

perlPackages.IOTty: Put version variable into URL

This commit is contained in:
Jonas Heinrich 2025-05-26 20:37:42 +02:00
parent 01e096822b
commit bd69f7fe98

View file

@ -17723,11 +17723,11 @@ with self;
}; };
}; };
IOTty = buildPerlPackage { IOTty = buildPerlPackage rec {
pname = "IO-Tty"; pname = "IO-Tty";
version = "1.20"; version = "1.20";
src = fetchurl { src = fetchurl {
url = "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-1.20.tar.gz"; url = "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-${version}.tar.gz";
hash = "sha256-sVMJ/IViOJMonLmyuI36ntHmkVa3XymThVOkW+bXMK8="; hash = "sha256-sVMJ/IViOJMonLmyuI36ntHmkVa3XymThVOkW+bXMK8=";
}; };
doCheck = !stdenv.hostPlatform.isDarwin; # openpty fails in the sandbox doCheck = !stdenv.hostPlatform.isDarwin; # openpty fails in the sandbox