nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 14 lines 315 B view raw
1{ self, callPackage, fetchFromGitHub, passthruFun }: 2 3callPackage ./default.nix rec { 4 version = "2.1-20220915"; 5 6 src = fetchFromGitHub { 7 owner = "openresty"; 8 repo = "luajit2"; 9 rev = "v${version}"; 10 hash = "sha256-kMHE4iQtm2CujK9TVut1jNhY2QxYP514jfBsxOCyd4s="; 11 }; 12 13 inherit self passthruFun; 14}