mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
spago: mark broken in ghc92
This commit is contained in:
parent
f3b87b4075
commit
63ad94602d
@ -637,7 +637,9 @@ self: super: builtins.intersectAttrs super {
|
|||||||
# Tests require network access.
|
# Tests require network access.
|
||||||
spagoWithoutChecks = dontCheck spagoOldAeson;
|
spagoWithoutChecks = dontCheck spagoOldAeson;
|
||||||
in
|
in
|
||||||
spagoWithoutChecks;
|
# spago doesn't currently build with ghc92. Top-level spago is pulled from
|
||||||
|
# ghc90 and explicitly marked unbroken.
|
||||||
|
markBroken spagoWithoutChecks;
|
||||||
|
|
||||||
# checks SQL statements at compile time, and so requires a running PostgreSQL
|
# checks SQL statements at compile time, and so requires a running PostgreSQL
|
||||||
# database to run it's test suite
|
# database to run it's test suite
|
||||||
|
@ -11,14 +11,16 @@
|
|||||||
|
|
||||||
let
|
let
|
||||||
spago =
|
spago =
|
||||||
haskell.lib.compose.justStaticExecutables
|
lib.pipe
|
||||||
|
haskell.packages.ghc90.spago
|
||||||
|
[ haskell.lib.compose.justStaticExecutables
|
||||||
(haskell.lib.compose.overrideCabal (oldAttrs: {
|
(haskell.lib.compose.overrideCabal (oldAttrs: {
|
||||||
maintainers = (oldAttrs.maintainers or []) ++ [
|
maintainers = (oldAttrs.maintainers or []) ++ [ lib.maintainers.cdepillabout ];
|
||||||
lib.maintainers.cdepillabout
|
changelog = "https://github.com/purescript/spago/releases/tag/${oldAttrs.version}";
|
||||||
|
}))
|
||||||
|
haskell.lib.compose.unmarkBroken
|
||||||
|
haskell.lib.compose.doDistribute
|
||||||
];
|
];
|
||||||
changelog =
|
|
||||||
"https://github.com/purescript/spago/releases/tag/${oldAttrs.version}";
|
|
||||||
}) haskell.packages.ghc90.spago);
|
|
||||||
in
|
in
|
||||||
|
|
||||||
spago.overrideAttrs (oldAttrs: {
|
spago.overrideAttrs (oldAttrs: {
|
||||||
@ -57,4 +59,3 @@ spago.overrideAttrs (oldAttrs: {
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user