2020-01-27 18:28:43 +00:00
|
|
|
{ haskell, haskellPackages, lib }:
|
|
|
|
|
2021-10-26 11:20:34 +01:00
|
|
|
haskell.lib.compose.justStaticExecutables (haskell.lib.compose.overrideCabal (oldAttrs: {
|
2020-01-27 18:28:43 +00:00
|
|
|
maintainers = (oldAttrs.maintainers or []) ++ [
|
|
|
|
lib.maintainers.cdepillabout
|
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = (oldAttrs.configureFlags or []) ++ ["-fbuildexe"];
|
|
|
|
|
|
|
|
buildDepends = (oldAttrs.buildDepends or []) ++ [haskellPackages.optparse-applicative];
|
2021-10-26 11:20:34 +01:00
|
|
|
}) haskellPackages.pretty-simple)
|
2020-01-27 18:28:43 +00:00
|
|
|
|