about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2019-03-06 12:30:59 +0100
committerMichael Raskin <7c6f434c@mail.ru>2019-03-06 12:31:06 +0100
commit3aae18f7dd60c32094de3df999b702f9ecedd689 (patch)
treead5c2544420263d23ba477b0604775e767024429
parent9b57d852af77203edf4d319fc8ea0dddf42d871b (diff)
downloadnixlib-3aae18f7dd60c32094de3df999b702f9ecedd689.tar
nixlib-3aae18f7dd60c32094de3df999b702f9ecedd689.tar.gz
nixlib-3aae18f7dd60c32094de3df999b702f9ecedd689.tar.bz2
nixlib-3aae18f7dd60c32094de3df999b702f9ecedd689.tar.lz
nixlib-3aae18f7dd60c32094de3df999b702f9ecedd689.tar.xz
nixlib-3aae18f7dd60c32094de3df999b702f9ecedd689.tar.zst
nixlib-3aae18f7dd60c32094de3df999b702f9ecedd689.zip
luarocks: fix meta after refactoring, thanks to @peti for mentioning
-rw-r--r--pkgs/development/tools/misc/luarocks/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/luarocks/default.nix b/pkgs/development/tools/misc/luarocks/default.nix
index 3bbee6ee5e40..5e418fcfdcfd 100644
--- a/pkgs/development/tools/misc/luarocks/default.nix
+++ b/pkgs/development/tools/misc/luarocks/default.nix
@@ -64,7 +64,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    inherit (s) version;
+    inherit version;
     description = ''A package manager for Lua'';
     license = licenses.mit ;
     maintainers = with maintainers; [raskin teto];