Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ca96b55d3a4a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 18b783b9bdb7
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 7, 2019

  1. luarocks: 3.1.3 -> 3.2.1

    doronbehar authored and Matthieu Coudron committed Sep 7, 2019
    Copy the full SHA
    18b783b View commit details
Showing with 7 additions and 5 deletions.
  1. +7 −5 pkgs/development/tools/misc/luarocks/default.nix
12 changes: 7 additions & 5 deletions pkgs/development/tools/misc/luarocks/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{stdenv, fetchurl
{stdenv, fetchFromGitHub
, curl, makeWrapper, which, unzip
, lua
# for 'luarocks pack'
@@ -9,11 +9,13 @@

stdenv.mkDerivation rec {
pname = "luarocks";
version = "3.1.3";
version = "3.2.1";

src = fetchurl {
url="http://luarocks.org/releases/luarocks-${version}.tar.gz";
sha256="04q5k6drypsnbp1wspr9ns72k8kjf62a787a6jg1bb2s95gl6wy5";
src = fetchFromGitHub {
owner = "luarocks";
repo = "luarocks";
rev = "v${version}";
sha256 = "0viiafmb8binksda79ah828q1dfnb6jsqlk7vyndl2xvx9yfn4y2";
};

patches = [ ./darwin-3.1.3.patch ];