nixpkgs/pkgs/development/tools/misc/luarocks/luarocks-nix.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
375 B
Nix
Raw Normal View History

{ luarocks, fetchFromGitHub }:
luarocks.overrideAttrs(old: {
pname = "luarocks-nix";
version = "2021-01-22";
src = fetchFromGitHub {
owner = "nix-community";
repo = "luarocks-nix";
2022-03-29 01:18:46 +00:00
rev = "6aa1d59e88eaef72d699477c3e7aa98b274ca405";
sha256 = "sha256-nQLl01RFYZYhpShz0gHxnhwFPvTgALpAbjFPIuTD2D0=";
};
2021-08-16 15:44:40 +00:00
patches = [];
meta.mainProgram = "luarocks";
})