2019-05-23 08:13:04 +03:00
|
|
|
{ pkgs ? import nixpkgs nixpkgsArgs
|
2019-03-22 02:43:20 +03:00
|
|
|
# Use a pinned nixpkgs rather than the one on NIX_PATH
|
|
|
|
, nixpkgs ? ./nixpkgs
|
2019-05-23 08:13:04 +03:00
|
|
|
# Provide args to the nixpkgs instantiation.
|
|
|
|
, nixpkgsArgs ? {}
|
2019-02-13 08:08:49 +03:00
|
|
|
# You can provide different pins for hackage.nix and stackage.nix if required.
|
|
|
|
# It's also possible to override these sources with NIX_PATH.
|
|
|
|
, hackageSourceJSON ? ./hackage-src.json
|
|
|
|
, stackageSourceJSON ? ./stackage-src.json
|
2019-02-05 06:50:34 +03:00
|
|
|
}:
|
|
|
|
|
2018-11-19 07:57:08 +03:00
|
|
|
let
|
|
|
|
# pkg-def's may reference boot packages, but those
|
|
|
|
# are not guaranteed to be available on hackage, as
|
|
|
|
# it is a manual process. They might eventually show
|
|
|
|
# up much later on hackage; but are not installable
|
|
|
|
# anyway. Therefore we just strip them out of the
|
|
|
|
# pkg-def's packages.
|
2019-03-18 16:20:33 +03:00
|
|
|
#
|
|
|
|
# Note: these will need to be provided by alternative
|
|
|
|
# means outside of hackage.
|
|
|
|
boot-pkgs = [ "rts" "ghc" "ghc-boot-th" "ghc-boot" "ghci"
|
2019-01-18 09:40:05 +03:00
|
|
|
"ghc-heap" # since ghc 8.6.
|
|
|
|
];
|
2018-11-19 07:57:08 +03:00
|
|
|
strip-pkg-def = pkgs: pkg-def: hackage: with pkgs.lib;
|
|
|
|
mapAttrs (k: v: if k == "packages"
|
|
|
|
then filterAttrs (k: _: !(builtins.elem k boot-pkgs)) v
|
|
|
|
else v)
|
|
|
|
(pkg-def hackage);
|
2019-02-05 06:50:34 +03:00
|
|
|
|
2019-01-18 05:48:22 +03:00
|
|
|
# ghc hackage patches.
|
|
|
|
# these are patches that turn hackage packages into the same as the ones
|
|
|
|
# ghc ships with the supposedly same version. See GHC Track Issue: 16199
|
|
|
|
ghcHackagePatches = import ./patches;
|
|
|
|
|
2019-02-05 05:57:15 +03:00
|
|
|
compat = import ./lib/compat.nix;
|
2019-01-25 12:58:53 +03:00
|
|
|
|
2019-02-05 06:50:34 +03:00
|
|
|
# Utility function for downloading a pinned git repo, that can be
|
|
|
|
# overridden with NIX_PATH.
|
|
|
|
fetchExternal = import ./lib/fetch-external.nix;
|
|
|
|
|
2019-05-22 06:14:12 +03:00
|
|
|
# Function for cleaning haskell source directories pulled from iohk-nix
|
|
|
|
cleanSourceHaskell = pkgs.callPackage ./lib/clean-source-haskell.nix {};
|
|
|
|
|
2019-02-05 06:50:34 +03:00
|
|
|
# All packages from Hackage as Nix expressions
|
|
|
|
hackage = import (fetchExternal {
|
|
|
|
name = "hackage-exprs-source";
|
2019-02-13 08:08:49 +03:00
|
|
|
specJSON = hackageSourceJSON;
|
2019-02-05 06:50:34 +03:00
|
|
|
override = "hackage";
|
|
|
|
});
|
|
|
|
|
|
|
|
# The set of all Stackage snapshots
|
|
|
|
stackage = import (fetchExternal {
|
|
|
|
name = "stackage-snapshot-source";
|
2019-02-13 08:08:49 +03:00
|
|
|
specJSON = stackageSourceJSON;
|
2019-02-05 06:50:34 +03:00
|
|
|
override = "stackage";
|
|
|
|
});
|
|
|
|
|
|
|
|
packages = self: ({
|
|
|
|
# Utility functions for working with the component builder.
|
|
|
|
haskellLib = let hl = import ./lib { inherit (pkgs) lib; haskellLib = hl; }; in hl;
|
2019-01-25 12:58:53 +03:00
|
|
|
|
2019-02-05 06:50:34 +03:00
|
|
|
# Create a Haskell package set based on a cabal build plan (plan-to-nix)
|
|
|
|
# and Nix expressions representing cabal packages (cabal-to-nix).
|
|
|
|
mkPkgSet =
|
|
|
|
{ pkg-def # Base package set. Either from stackage (via stack-to-nix) or from a cabal projects plan file (via plan-to-nix)
|
2019-03-15 06:10:57 +03:00
|
|
|
, pkg-def-extras ? [] # Additional packages to augment the Base package set `pkg-def` with.
|
2019-02-05 06:50:34 +03:00
|
|
|
, modules ? []
|
|
|
|
}@args:
|
2019-01-25 12:58:53 +03:00
|
|
|
|
2019-02-05 06:50:34 +03:00
|
|
|
import ./package-set.nix (args // {
|
|
|
|
inherit hackage pkgs;
|
|
|
|
pkg-def = strip-pkg-def pkgs pkg-def;
|
|
|
|
});
|
|
|
|
|
|
|
|
# Create a Haskell package set based on a Stack configuration.
|
|
|
|
mkStackPkgSet =
|
|
|
|
{ stack-pkgs # Path to the output of stack-to-nix
|
2019-03-15 06:10:57 +03:00
|
|
|
, pkg-def-extras ? []
|
2019-02-05 06:50:34 +03:00
|
|
|
, modules ? []
|
|
|
|
}@args:
|
|
|
|
|
|
|
|
let
|
|
|
|
# The Stackage release referenced in the stack config
|
|
|
|
pkg-def = stackage.${stack-pkgs.resolver};
|
|
|
|
# The compiler referenced in the stack config
|
2019-03-15 06:10:57 +03:00
|
|
|
compiler = (stack-pkgs.extras hackage).compiler or (pkg-def hackage).compiler;
|
2019-05-10 08:44:10 +03:00
|
|
|
patchesModule = ghcHackagePatches.${compiler.nix-name} or {};
|
2019-02-05 06:50:34 +03:00
|
|
|
in self.mkPkgSet {
|
|
|
|
inherit pkg-def;
|
2019-03-15 06:10:57 +03:00
|
|
|
pkg-def-extras = [ stack-pkgs.extras ] ++ pkg-def-extras;
|
2019-05-10 08:44:10 +03:00
|
|
|
modules = [ patchesModule ] ++ modules;
|
2019-02-05 06:50:34 +03:00
|
|
|
};
|
|
|
|
|
2019-02-15 10:40:14 +03:00
|
|
|
# Create a Haskell package set based on a Cabal configuration.
|
|
|
|
mkCabalProjectPkgSet =
|
|
|
|
{ plan-pkgs # Path to the output of plan-to-nix
|
2019-03-15 06:10:57 +03:00
|
|
|
, pkg-def-extras ? []
|
2019-02-15 10:40:14 +03:00
|
|
|
, modules ? []
|
|
|
|
}@args:
|
|
|
|
|
|
|
|
let
|
|
|
|
pkg-def = plan-pkgs.pkgs;
|
|
|
|
# The compiler referenced in the stack config
|
2019-03-15 06:10:57 +03:00
|
|
|
compiler = (plan-pkgs.extras hackage).compiler or (pkg-def hackage).compiler;
|
2019-02-15 10:40:14 +03:00
|
|
|
in self.mkPkgSet {
|
|
|
|
inherit pkg-def;
|
2019-03-15 06:10:57 +03:00
|
|
|
pkg-def-extras = [ plan-pkgs.extras ] ++ pkg-def-extras;
|
2019-02-15 10:40:14 +03:00
|
|
|
modules = [ ghcHackagePatches.${compiler.nix-name} ] ++ modules;
|
|
|
|
};
|
|
|
|
|
2019-02-08 03:17:10 +03:00
|
|
|
# Programs for generating Nix expressions from Cabal and Stack
|
2019-05-17 10:49:40 +03:00
|
|
|
# files. We need to make sure we build this from the buildPackages,
|
|
|
|
# we never want to actually cross compile nix-tools on it's own.
|
2019-05-22 06:14:12 +03:00
|
|
|
nix-tools = pkgs.buildPackages.callPackage ./nix-tools { inherit fetchExternal cleanSourceHaskell; inherit (self) mkCabalProjectPkgSet; };
|
2019-05-17 10:49:40 +03:00
|
|
|
|
|
|
|
# Function to call stackToNix
|
|
|
|
callStackToNix = self.callPackage ./call-stack-to-nix.nix {};
|
2019-02-08 03:17:10 +03:00
|
|
|
|
2019-02-05 06:50:34 +03:00
|
|
|
# Snapshots of Hackage and Stackage, converted to Nix expressions,
|
|
|
|
# regularly updated.
|
|
|
|
inherit hackage stackage;
|
2019-02-08 03:45:02 +03:00
|
|
|
|
|
|
|
# Scripts for keeping Hackage and Stackage up to date.
|
|
|
|
maintainer-scripts = {
|
|
|
|
update-hackage = self.callPackage ./scripts/update-hackage.nix {};
|
2019-02-11 06:37:10 +03:00
|
|
|
update-stackage = self.callPackage ./scripts/update-stackage.nix {};
|
2019-03-22 04:48:30 +03:00
|
|
|
update-pins = self.callPackage ./scripts/update-pins.nix {};
|
2019-02-08 03:45:02 +03:00
|
|
|
};
|
2019-05-18 17:00:28 +03:00
|
|
|
|
|
|
|
# Make this handy overridable fetch function available.
|
|
|
|
inherit fetchExternal;
|
|
|
|
|
2019-05-22 06:14:12 +03:00
|
|
|
# Function for cleaning haskell source diretories.
|
|
|
|
inherit cleanSourceHaskell;
|
|
|
|
|
2019-05-21 15:05:03 +03:00
|
|
|
# Produce a fixed output derivation from a moving target (hackage index tarball)
|
|
|
|
hackageTarball = { index-state, sha256 }:
|
2019-05-23 08:13:04 +03:00
|
|
|
assert sha256 != null;
|
|
|
|
pkgs.fetchurl {
|
|
|
|
name = "01-index.tar.gz-at-${builtins.replaceStrings [":"] [""] index-state}";
|
|
|
|
url = "https://hackage.haskell.org/01-index.tar.gz";
|
|
|
|
downloadToTemp = true;
|
|
|
|
postFetch = "${self.nix-tools}/bin/truncate-index -o $out -i $downloadedFile -s ${index-state}";
|
|
|
|
|
2019-05-21 15:05:03 +03:00
|
|
|
outputHashAlgo = "sha256";
|
|
|
|
outputHash = sha256;
|
2019-05-23 08:13:04 +03:00
|
|
|
};
|
2019-05-21 15:05:03 +03:00
|
|
|
|
|
|
|
mkLocalHackageRepo = import ./mk-local-hackage-repo { inherit (self) hackageTarball; inherit pkgs; };
|
|
|
|
|
|
|
|
dotCabal = { index-state, sha256 }@args:
|
|
|
|
pkgs.runCommand "dot-cabal-at-${builtins.replaceStrings [":"] [""] index-state}" { nativeBuildInputs = [ pkgs.cabal-install ]; } ''
|
|
|
|
mkdir -p $out/.cabal
|
|
|
|
cat <<EOF > $out/.cabal/config
|
|
|
|
repository cached
|
|
|
|
url: file:${self.mkLocalHackageRepo args}
|
|
|
|
secure: True
|
|
|
|
root-keys:
|
|
|
|
key-threshold: 0
|
|
|
|
EOF
|
|
|
|
mkdir -p $out/.cabal/packages/cached
|
|
|
|
HOME=$out cabal new-update cached
|
|
|
|
'';
|
|
|
|
|
2019-05-23 08:13:04 +03:00
|
|
|
generateHackageIndexStateHashes = pkgs.runCommand "index-state-hashes" {} ''
|
|
|
|
truncate=${self.nix-tools}/bin/truncate-index
|
|
|
|
start=${let ls = builtins.attrNames (import ./lib/index-state-hashes.nix); in builtins.elemAt ls (builtins.length ls - 1)}
|
|
|
|
cat ${./lib/index-state-hashes.nix} | head -n -1 >> $out
|
|
|
|
for d in $(seq -f '%.f' $(date -u +%s -d $start) 86400 $(date -u +%s)) ; do
|
|
|
|
dt=$(date -u +%Y-%m-%d -d @$d)
|
|
|
|
if [[ "''${dt}T00:00:00Z" != "$start" ]]; then
|
|
|
|
''${truncate} -o ''${dt}-01-index.tar.gz -i ${builtins.fetchurl "https://hackage.haskell.org/01-index.tar.gz"} -s "''${dt}T00:00:00Z"
|
|
|
|
sha256=$(${pkgs.nix}/bin/nix-hash --flat --type sha256 ''${dt}-01-index.tar.gz)
|
|
|
|
echo " \"''${dt}T00:00:00Z\" = \"''${sha256}\";" >> $out
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo '}' >> $out
|
|
|
|
'';
|
2019-05-21 15:05:03 +03:00
|
|
|
|
2019-05-18 17:00:28 +03:00
|
|
|
# Takes a haskell src directory runs cabal new-configure and plan-to-nix.
|
|
|
|
# Resulting nix files are added to nix-plan subdirectory.
|
|
|
|
callCabalProjectToNix = import ./lib/cabalProjectToNix.nix {
|
2019-05-21 15:05:03 +03:00
|
|
|
inherit (self) dotCabal;
|
2019-05-18 17:00:28 +03:00
|
|
|
inherit pkgs;
|
|
|
|
inherit (pkgs) runCommand cabal-install ghc;
|
|
|
|
inherit (pkgs.haskellPackages) hpack;
|
|
|
|
inherit (self) nix-tools;
|
|
|
|
inherit (pkgs) symlinkJoin;
|
|
|
|
};
|
2019-02-05 06:50:34 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
in
|
|
|
|
pkgs.lib.makeScope pkgs.newScope packages
|