Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
haskell,
|
|
haskellPackages,
|
|
runCommand,
|
|
}:
|
|
|
|
let
|
|
localRaw = haskellPackages.callPackage ./generated.nix { };
|
|
in
|
|
lib.recurseIntoAttrs rec {
|
|
|
|
helloFromCabalSdist = haskellPackages.buildFromCabalSdist haskellPackages.hello;
|
|
|
|
# A more complicated example with a cabal hook.
|
|
hercules-ci-cnix-store = haskellPackages.buildFromCabalSdist haskellPackages.hercules-ci-cnix-store;
|
|
|
|
localFromCabalSdist = haskellPackages.buildFromCabalSdist localRaw;
|
|
|
|
# This test makes sure that localHasNoDirectReference can actually fail if
|
|
# it doesn't do anything. If this test fails, either the test setup was broken,
|
|
# or Haskell packaging has changed the way `src` is treated in such a way that
|
|
# either the test or the design of `buildFromCabalSdist` needs to be reconsidered.
|
|
assumptionLocalHasDirectReference =
|
|
runCommand "localHasDirectReference"
|
|
{
|
|
drvPath = builtins.unsafeDiscardOutputDependency localRaw.drvPath;
|
|
}
|
|
''
|
|
grep ${localRaw.src} $drvPath >/dev/null
|
|
touch $out
|
|
'';
|
|
|
|
localHasNoDirectReference =
|
|
runCommand "localHasNoDirectReference"
|
|
{
|
|
drvPath = builtins.unsafeDiscardOutputDependency localFromCabalSdist.drvPath;
|
|
}
|
|
''
|
|
grep -v ${localRaw.src} $drvPath >/dev/null
|
|
touch $out
|
|
'';
|
|
}
|