nixpkgs/pkgs/development/tools/purescript/spago/default.nix

62 lines
1.4 KiB
Nix
Raw Normal View History

2020-02-10 03:54:23 +00:00
{ haskell
, haskellPackages
2019-12-20 07:12:29 +00:00
, lib
2020-12-23 08:30:54 +00:00
# The following are only needed for the passthru.tests:
2021-04-09 14:47:09 +00:00
, cacert
2020-12-23 08:30:54 +00:00
, git
2020-02-10 03:54:23 +00:00
, nodejs
, purescript
, runCommand
}:
2019-12-20 07:12:29 +00:00
2020-02-10 03:54:23 +00:00
let
spago =
haskell.lib.justStaticExecutables
(haskell.lib.overrideCabal haskellPackages.spago (oldAttrs: {
maintainers = (oldAttrs.maintainers or []) ++ [
lib.maintainers.cdepillabout
];
changelog =
"https://github.com/purescript/spago/releases/tag/${oldAttrs.version}";
2020-02-10 03:54:23 +00:00
}));
in
2019-12-20 07:12:29 +00:00
2020-02-10 03:54:23 +00:00
spago.overrideAttrs (oldAttrs: {
2019-12-20 07:12:29 +00:00
passthru = (oldAttrs.passthru or {}) // {
updateScript = ./update.sh;
2020-02-10 03:54:23 +00:00
# These tests can be run with the following command. The tests access the
# network, so they cannot be run in the nix sandbox. sudo is needed in
# order to change the sandbox option.
#
# $ sudo nix-build -A spago.passthru.tests --option sandbox relaxed
#
tests =
runCommand
"spago-tests"
{
__noChroot = true;
nativeBuildInputs = [
2021-04-09 14:47:09 +00:00
cacert
2020-12-23 08:30:54 +00:00
git
2020-02-10 03:54:23 +00:00
nodejs
purescript
spago
];
}
''
# spago expects HOME to be set because it creates a cache file under
# home.
HOME=$(pwd)
spago --verbose init
spago --verbose build
spago --verbose test
touch $out
'';
2019-12-20 07:12:29 +00:00
};
2020-02-10 03:54:23 +00:00
})