diff options
Diffstat (limited to 'pkgs/default.nix')
-rw-r--r-- | pkgs/default.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 7dce871..f893125 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -4,11 +4,9 @@ { haskell = super.haskell // { packageOverrides = self: super: { + acms = self.callCabal2nix "acms" ../acms { }; astore = self.callCabal2nix "astore" sources.json2sql { }; autotypes = self.callCabal2nix "autotypes" ../autotypes { }; - backend = self.callCabal2nix "backend" ../backend { }; - cli = self.callCabal2nix "cli" ../cli { }; - common = self.callCabal2nix "common" ../common { }; frontend = self.callCabal2nix "frontend" ../frontend { }; sh = pkgs.haskell.lib.dontCheck (self.callCabal2nix "sh" sources.sh { }); websockets = pkgs.haskell.lib.doJailbreak super.websockets; |