diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-10-12 16:29:05 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-10-12 17:10:53 +0200 |
commit | f59cd4349c974c8ab7907b4852f5dc86ce4daeed (patch) | |
tree | 7eaed9115b8ca5ae46792bbf4471bf007480d174 /pkgs | |
parent | 29d9251b15d56f66d06551e158e992ace1856110 (diff) |
add doc tests
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix new file mode 100644 index 0000000..7dce871 --- /dev/null +++ b/pkgs/default.nix @@ -0,0 +1,17 @@ +{ sources ? import ../nix/sources.nix }: +(self: super: + let pkgs = self; in + { + haskell = super.haskell // { + packageOverrides = self: super: { + 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; + }; + }; + }) |