nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ haskellPackages
2, haskell
3, lib
4}:
5
6haskell.lib.justStaticExecutables (haskell.lib.overrideCabal haskellPackages.spago (oldAttrs: {
7 maintainers = (oldAttrs.maintainers or []) ++ [
8 lib.maintainers.cdepillabout
9 ];
10
11 passthru = (oldAttrs.passthru or {}) // {
12 updateScript = ./update.sh;
13 };
14}))