summary refs log tree commit diff
path: root/pkgs/development/tools/purescript/spago/default.nix
blob: 2fc5efedb20beda594c0eedf23ac87cc5263dedd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ haskellPackages
, haskell
, lib
}:

haskell.lib.justStaticExecutables (haskell.lib.overrideCabal haskellPackages.spago (oldAttrs: {
  maintainers = (oldAttrs.maintainers or []) ++ [
    lib.maintainers.cdepillabout
  ];

  passthru = (oldAttrs.passthru or {}) // {
    updateScript = ./update.sh;
  };
}))