2022-01-30 17:06:58 +01:00
|
|
|
{ depot ? (import ../../../. { })
|
2021-04-10 23:30:09 +02:00
|
|
|
, pkgs ? depot.third_party.nixpkgs
|
2022-01-30 17:06:58 +01:00
|
|
|
, ...
|
|
|
|
}:
|
2021-04-10 23:30:09 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
ignore = depot.third_party.gitignoreSource.gitignoreFilter ./.;
|
|
|
|
src = builtins.path {
|
|
|
|
name = "xanthous-source";
|
|
|
|
path = ./.;
|
2021-11-07 20:24:43 +01:00
|
|
|
filter = path: type:
|
|
|
|
!(type == "directory" && builtins.baseNameOf path == "server")
|
2021-11-13 15:48:54 +01:00
|
|
|
&& !(type == "directory" && builtins.baseNameOf path == "docs")
|
2021-11-07 20:24:43 +01:00
|
|
|
&& (ignore path type
|
2022-01-30 17:06:58 +01:00
|
|
|
|| builtins.baseNameOf path == "package.yaml");
|
2021-04-10 23:30:09 +02:00
|
|
|
};
|
|
|
|
# generated by cabal2nix
|
|
|
|
basePkg = pkgs.haskellPackages.callPackage ./pkg.nix { };
|
|
|
|
in
|
|
|
|
|
|
|
|
pkgs.haskell.lib.overrideCabal basePkg (default: {
|
|
|
|
inherit src;
|
|
|
|
version = "canon";
|
|
|
|
configureFlags = [
|
|
|
|
"--ghc-option=-Wall --ghc-option=-Werror"
|
2022-01-30 17:06:58 +01:00
|
|
|
] ++ (default.configureFlags or [ ]);
|
2021-04-10 23:30:09 +02:00
|
|
|
})
|