aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2025-02-20 12:29:35 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2025-02-20 18:36:23 +0100
commitcaf72faccc04e647c27e1b5eef85c515949d8210 (patch)
treeec32dda7b87c12712307d2d101368fed5888d4b9 /pkgs
parent3c64b52017e7c16da0d017c033c77eee5d7a4340 (diff)
consolidate `backend, cli, common` -> `acms`
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/default.nix4
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;