diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-06-14 15:20:32 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-06-14 15:20:32 +0200 |
commit | 2183948d78151fc41a3e96627ead467d5d89e646 (patch) | |
tree | 943582e1e7b808bc6c2f3546d2caa65af66af4c2 | |
parent | 8a2894deddba9aefdd9025ab5f5816c2d7f1a9b6 (diff) | |
download | nixos-2183948d78151fc41a3e96627ead467d5d89e646.tar nixos-2183948d78151fc41a3e96627ead467d5d89e646.tar.gz nixos-2183948d78151fc41a3e96627ead467d5d89e646.tar.bz2 nixos-2183948d78151fc41a3e96627ead467d5d89e646.tar.xz nixos-2183948d78151fc41a3e96627ead467d5d89e646.zip |
rename
-rw-r--r-- | ymir.nix | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -52,12 +52,11 @@ in rec { | |||
52 | name = "cgi"; | 52 | name = "cgi"; |
53 | interpreter = pkgs.python3; | 53 | interpreter = pkgs.python3; |
54 | path = "plugins/cgi"; | 54 | path = "plugins/cgi"; |
55 | deps = [ pkgs.python3 ]; | 55 | inputs = [ pkgs.python3 ]; |
56 | install = '' | 56 | install = '' |
57 | ${pkgs.python3.executable} -m compileall $out/${pkgs.python3.sitePackages}/ | 57 | ${pkgs.python3.executable} -m compileall $out/${pkgs.python3.sitePackages}/ |
58 | ${pkgs.python3.executable} -O -m compileall $out/${pkgs.python3.sitePackages}/ | 58 | ${pkgs.python3.executable} -O -m compileall $out/${pkgs.python3.sitePackages}/ |
59 | ''; | 59 | ''; |
60 | inputs = []; | ||
61 | }; | 60 | }; |
62 | }; | 61 | }; |
63 | plugins = []; | 62 | plugins = []; |