xin/overlays/rex.nix

15 lines
336 B
Nix
Raw Normal View History

2023-08-09 13:17:43 -06:00
let
hash = "sha256-An0wQu+UC2dZDlmJ6W8irh5nunRIlcXdPbVpwFE3Alw=";
rex = _: super: {
rex = super.rex.overrideAttrs (_: rec {
pname = "Rex";
version = "1.14.3";
src = super.fetchurl {
url = "mirror://cpan/authors/id/F/FE/FERKI/Rex-${version}.tar.gz";
inherit hash;
};
});
};
in
rex