Skip to content

Commit 6130408

Browse files
committed
Add simple-shell to build.nix
1 parent de69b70 commit 6130408

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,10 @@ dimension "Nixpkgs version" nixpkgsVersions (nixpkgsName: pinnedNixpkgsSrc:
125125
ghc = pkgs.buildPackages.haskell-nix.compiler.${compiler-nix-name};
126126
} // pkgs.lib.optionalAttrs runTests {
127127
inherit (build) tests tools maintainer-scripts maintainer-script-cache;
128-
} // pkgs.lib.optionalAttrs (ifdLevel >= 3) {
128+
} // pkgs.lib.optionalAttrs (ifdLevel >= 3) rec {
129129
hello = (pkgs.haskell-nix.hackage-package { name = "hello"; version = "1.0.0.2"; inherit evalPackages compiler-nix-name; }).getComponent "exe:hello";
130+
# Make sure the default shell tools (hoogle) are built
131+
simple-shell = (hello.project.flake {}).devShells.default;
130132
});
131133
}
132134
//

0 commit comments

Comments
 (0)