We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80af527 commit bb49677Copy full SHA for bb49677
3 files changed
tests/flake.nix
@@ -6,9 +6,8 @@
6
flake-utils.lib.eachSystem ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"] (system:
7
let
8
pkgs = import nixpkgs { inherit system; };
9
- tests = pkgs.haskell.packages.ghc96.callPackage ./tests.nix {};
10
in
11
- rec {
+ {
12
devShells = {
13
default = pkgs.mkShell {
14
buildInputs = with pkgs; [
@@ -27,7 +26,6 @@
27
26
};
28
29
packages = {
30
- inherit tests;
31
inherit (pkgs) cabal2nix;
32
33
nixpkgsPath = pkgs.writeShellScriptBin "nixpkgsPath.sh" "echo -n ${pkgs.path}";
@@ -40,8 +38,6 @@
40
38
41
39
inherit (pkgs) direnv stack;
42
43
-
44
- defaultPackage = packages.tests;
45
}
46
);
47
tests/generate.sh
tests/tests.nix
0 commit comments