We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
build.nix
1 parent de69b70 commit 6130408Copy full SHA for 6130408
ci.nix
@@ -125,8 +125,10 @@ dimension "Nixpkgs version" nixpkgsVersions (nixpkgsName: pinnedNixpkgsSrc:
125
ghc = pkgs.buildPackages.haskell-nix.compiler.${compiler-nix-name};
126
} // pkgs.lib.optionalAttrs runTests {
127
inherit (build) tests tools maintainer-scripts maintainer-script-cache;
128
- } // pkgs.lib.optionalAttrs (ifdLevel >= 3) {
+ } // pkgs.lib.optionalAttrs (ifdLevel >= 3) rec {
129
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;
132
});
133
}
134
//
0 commit comments