diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-09-27 17:11:33 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-09-27 17:11:33 +0200 |
commit | 0f5a935956f4b9f35eadca056241d48f5dd49d14 (patch) | |
tree | bf27c89c045248676da179ee9cfea21683e8b9d3 /custom | |
parent | 06c06c3256df99a0335773fc898170bc081ce581 (diff) | |
download | nixos-0f5a935956f4b9f35eadca056241d48f5dd49d14.tar nixos-0f5a935956f4b9f35eadca056241d48f5dd49d14.tar.gz nixos-0f5a935956f4b9f35eadca056241d48f5dd49d14.tar.bz2 nixos-0f5a935956f4b9f35eadca056241d48f5dd49d14.tar.xz nixos-0f5a935956f4b9f35eadca056241d48f5dd49d14.zip |
switch to lua51
Diffstat (limited to 'custom')
-rw-r--r-- | custom/luaPam.nix | 4 | ||||
-rw-r--r-- | custom/luaPosix.nix | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/custom/luaPam.nix b/custom/luaPam.nix index f0c93e4f..fa84a4f3 100644 --- a/custom/luaPam.nix +++ b/custom/luaPam.nix | |||
@@ -4,8 +4,8 @@ | |||
4 | }: | 4 | }: |
5 | 5 | ||
6 | let | 6 | let |
7 | lua = pkgs.luaPackages.lua; | 7 | lua = pkgs.luaPackages51.lua; |
8 | in pkgs.luaPackages.buildLuaPackage { | 8 | in pkgs.luaPackages51.buildLuaPackage { |
9 | name = "lua-pam"; | 9 | name = "lua-pam"; |
10 | buildInputs = (with pkgs; [ pam ]); | 10 | buildInputs = (with pkgs; [ pam ]); |
11 | src = fetchgit { | 11 | src = fetchgit { |
diff --git a/custom/luaPosix.nix b/custom/luaPosix.nix index cbaaeb2d..60132c2d 100644 --- a/custom/luaPosix.nix +++ b/custom/luaPosix.nix | |||
@@ -3,7 +3,7 @@ | |||
3 | , fetchurl | 3 | , fetchurl |
4 | }: | 4 | }: |
5 | 5 | ||
6 | pkgs.luaPackages.buildLuaPackage rec { | 6 | pkgs.luaPackages51.buildLuaPackage rec { |
7 | name = "luaposix-${version}"; | 7 | name = "luaposix-${version}"; |
8 | version = "33.3.1"; | 8 | version = "33.3.1"; |
9 | buildInputs = (with pkgs; [ perl ]); | 9 | buildInputs = (with pkgs; [ perl ]); |