summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ymir.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/ymir.nix b/ymir.nix
index 26911762..3c0e2e4f 100644
--- a/ymir.nix
+++ b/ymir.nix
@@ -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 = [];