mirror of
https://github.com/ilyakooo0/haskell.nix.git
synced 2024-11-10 06:47:48 +03:00
87 lines
4.0 KiB
Nix
87 lines
4.0 KiB
Nix
# This file contains the package set used by the release.nix jobset.
|
|
#
|
|
# It is separate from default.nix because that file is the public API
|
|
# of Haskell.nix, which shouldn't have tests, etc.
|
|
let
|
|
haskellNix = (import ./default.nix {});
|
|
in
|
|
{ nixpkgs ? haskellNix.sources.nixpkgs-2009
|
|
, nixpkgsArgs ? haskellNix.nixpkgsArgs
|
|
, pkgs ? import nixpkgs nixpkgsArgs
|
|
, ifdLevel ? 1000
|
|
, compiler-nix-name ? throw "No `compiler-nix-name` passed to build.nix"
|
|
}:
|
|
|
|
let
|
|
haskell = pkgs.haskell-nix;
|
|
buildHaskell = pkgs.buildPackages.haskell-nix;
|
|
tool = buildHaskell.tool;
|
|
in rec {
|
|
tests = import ./test/default.nix { inherit pkgs ifdLevel compiler-nix-name; };
|
|
|
|
tools = pkgs.lib.optionalAttrs (ifdLevel >= 3) (
|
|
pkgs.recurseIntoAttrs ({
|
|
cabal-latest = tool compiler-nix-name "cabal" "latest";
|
|
} // pkgs.lib.optionalAttrs (!__elem compiler-nix-name ["ghc901" "ghc921"]) {
|
|
hls-latest = tool compiler-nix-name "haskell-language-server" "latest";
|
|
hlint-latest = tool compiler-nix-name "hlint" (if compiler-nix-name == "ghc865" then "3.2.7" else "latest");
|
|
})
|
|
);
|
|
|
|
# Scripts for keeping Hackage and Stackage up to date, and CI tasks.
|
|
# The dontRecurseIntoAttrs prevents these from building on hydra
|
|
# as not all of them can work in restricted eval mode (as they
|
|
# are not pure).
|
|
maintainer-scripts = pkgs.dontRecurseIntoAttrs {
|
|
update-hackage = import ./scripts/update-hackage.nix {
|
|
inherit (pkgs) stdenv lib writeScript coreutils glibc git
|
|
openssh nixFlakes gawk bash curl findutils;
|
|
# Update scripts use the internal nix-tools and cabal-install (compiled with a fixed GHC version)
|
|
nix-tools = haskell.internal-nix-tools;
|
|
cabal-install = haskell.internal-cabal-install;
|
|
inherit (haskell) update-index-state-hashes;
|
|
};
|
|
update-stackage = haskell.callPackage ./scripts/update-stackage.nix {
|
|
inherit (pkgs) stdenv lib writeScript coreutils glibc git
|
|
openssh nixFlakes gawk bash curl findutils;
|
|
# Update scripts use the internal nix-tools and cabal-install (compiled with a fixed GHC version)
|
|
nix-tools = haskell.internal-nix-tools;
|
|
cabal-install = haskell.internal-cabal-install;
|
|
};
|
|
update-pins = haskell.callPackage ./scripts/update-pins.nix {};
|
|
update-docs = pkgs.buildPackages.callPackage ./scripts/update-docs.nix {
|
|
generatedOptions = pkgs.callPackage ./scripts/options-doc.nix { };
|
|
};
|
|
# Because this is going to be used to test caching on hydra, it must not
|
|
# use the darcs package from the haskell.nix we are testing. For that reason
|
|
# it uses `pkgs.buildPackages.callPackage` not `haskell.callPackage`
|
|
# (We could pull in darcs from a known good haskell.nix for hydra to
|
|
# use)
|
|
check-hydra = pkgs.buildPackages.callPackage ./scripts/check-hydra.nix {};
|
|
check-closure-size = pkgs.buildPackages.callPackage ./scripts/check-closure-size.nix {
|
|
# Includes cabal-install since this is commonly used.
|
|
nix-tools = pkgs.linkFarm "common-tools" [
|
|
{ name = "nix-tools"; path = haskell.nix-tools.${compiler-nix-name}; }
|
|
{ name = "cabal-install"; path = haskell.cabal-install.${compiler-nix-name}; }
|
|
];
|
|
};
|
|
check-materialization-concurrency = pkgs.buildPackages.callPackage ./scripts/check-materialization-concurrency/check.nix {};
|
|
check-path-support = pkgs.buildPackages.callPackage ./scripts/check-path-support.nix {};
|
|
};
|
|
|
|
# These are pure parts of maintainer-script so they can be built by hydra
|
|
# and added to the cache to speed up buildkite.
|
|
maintainer-script-cache = pkgs.recurseIntoAttrs (
|
|
(pkgs.lib.optionalAttrs pkgs.stdenv.hostPlatform.isWindows {
|
|
inherit (maintainer-scripts) check-hydra;
|
|
})
|
|
// (pkgs.lib.optionalAttrs (ifdLevel > 2) {
|
|
inherit (maintainer-scripts) update-docs check-closure-size;
|
|
# Some of the dependencies of the impure scripts so that they will
|
|
# will be in the cache too for buildkite.
|
|
inherit (pkgs.buildPackages) glibc coreutils git openssh cabal-install nix-prefetch-git;
|
|
inherit (haskell) nix-tools;
|
|
})
|
|
);
|
|
}
|