about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/misc/luarocks/luarocks-nix.nix
blob: 198da09e1d06a28145fc5f32add5dafdde0921da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ luarocks, fetchFromGitHub }:
luarocks.overrideAttrs(old: {
  pname = "luarocks-nix";
  src = fetchFromGitHub {
    owner = "teto";
    repo = "luarocks";
    rev = "ca52159dcb544161e5bef1e4e366f3da31fa4555";
    sha256 = "13g7vpyirq51qmmnjsqhhiia9wdnq9aw4da0n3r7l1ar95q168sn";
  };
})