nixpkgs/pkgs/development/tools/purescript/spago/default.nix
2019-12-27 20:37:13 +01:00

15 lines
308 B
Nix

{ 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;
};
}))