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

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