d56f44df06
GitOrigin-RevId: bc4b9eef3ce3d5a90d8693e8367c9cbfc9fc1e13
14 lines
375 B
Nix
14 lines
375 B
Nix
{ luarocks, fetchFromGitHub }:
|
|
luarocks.overrideAttrs(old: {
|
|
pname = "luarocks-nix";
|
|
version = "2021-01-22";
|
|
src = fetchFromGitHub {
|
|
owner = "nix-community";
|
|
repo = "luarocks-nix";
|
|
rev = "6aa1d59e88eaef72d699477c3e7aa98b274ca405";
|
|
sha256 = "sha256-nQLl01RFYZYhpShz0gHxnhwFPvTgALpAbjFPIuTD2D0=";
|
|
};
|
|
patches = [];
|
|
|
|
meta.mainProgram = "luarocks";
|
|
})
|