diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-06-05 22:47:49 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-06-05 23:36:34 +0200 |
commit | bfb98d7675515394e1b9a0417bfafc83d775611c (patch) | |
tree | dec841dc2ca6b79f8eaa777b90b3b1473f369c9d /default.nix | |
parent | 2064b4e7767dca2858d8093597503a594dcd74ef (diff) |
add schema version
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/default.nix b/default.nix index 32e9ff8..afea1a3 100644 --- a/default.nix +++ b/default.nix @@ -7,6 +7,7 @@ let astore = self.callCabal2nix "astore" sources.json2sql { }; autotypes = self.callCabal2nix "autotypes" ./autotypes { }; backend = self.callCabal2nix "backend" ./backend { }; + common = self.callCabal2nix "common" ./common { }; frontend = self.callCabal2nix "frontend" ./frontend { }; websockets = pkgs.haskell.lib.doJailbreak super.websockets; }; @@ -14,6 +15,7 @@ let jsHaskellPackages = pkgs.pkgsCross.ghcjs.haskell.packages.ghc98.override { overrides = self: super: { + common = self.callCabal2nix "common" ./common { }; frontend = self.callCabal2nix "frontend" ./frontend { }; }; }; @@ -25,6 +27,7 @@ rec { packages = _: [ haskellPackages.autotypes haskellPackages.backend + haskellPackages.common haskellPackages.frontend ]; buildInputs = [ |