summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2015-09-27 16:22:42 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2015-09-27 16:22:42 +0200
commit0a2f3f736ee00583abd70ed3f0257f7383bea12c (patch)
treeb1b489ebb50eb09f42331f0ccc91b5281d35af9c
parent53c9fb939b08199f334218da66a11b07a0ed77bf (diff)
downloadnixos-0a2f3f736ee00583abd70ed3f0257f7383bea12c.tar
nixos-0a2f3f736ee00583abd70ed3f0257f7383bea12c.tar.gz
nixos-0a2f3f736ee00583abd70ed3f0257f7383bea12c.tar.bz2
nixos-0a2f3f736ee00583abd70ed3f0257f7383bea12c.tar.xz
nixos-0a2f3f736ee00583abd70ed3f0257f7383bea12c.zip
5.2 does not work for lua
-rw-r--r--ymir.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/ymir.nix b/ymir.nix
index 47377f4a..2d2e03de 100644
--- a/ymir.nix
+++ b/ymir.nix
@@ -19,7 +19,7 @@ in {
19 nixpkgs.config.packageOverrides = pkgs: 19 nixpkgs.config.packageOverrides = pkgs:
20 rec { 20 rec {
21 prosody = pkgs.callPackage ./customized/prosody.nix ({ 21 prosody = pkgs.callPackage ./customized/prosody.nix ({
22 inherit (pkgs.luaPackages) luasocket luasec luaexpat luafilesystem luabitop luaevent luazlib; 22 inherit (pkgs.lua51Packages) luasocket luasec luaexpat luafilesystem luabitop luaevent luazlib;
23 extraModules = ["mod_auth_pam"]; 23 extraModules = ["mod_auth_pam"];
24 extraLibs = [luaPam]; 24 extraLibs = [luaPam];
25 }); 25 });