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

15 lines
308 B
Nix
Raw Normal View History

2019-12-20 07:12:29 +00:00
{ haskellPackages
, haskell
, lib
}:
2019-12-20 07:12:29 +00:00
haskell.lib.justStaticExecutables (haskell.lib.overrideCabal haskellPackages.spago (oldAttrs: {
maintainers = (oldAttrs.maintainers or []) ++ [
lib.maintainers.cdepillabout
];
2019-12-20 07:12:29 +00:00
passthru = (oldAttrs.passthru or {}) // {
updateScript = ./update.sh;
};
}))