2020-04-24 23:36:52 +00:00
|
|
|
{ haskell, haskellPackages, lib }:
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
haskell.lib.compose.justStaticExecutables (haskell.lib.compose.overrideCabal (oldAttrs: {
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = (oldAttrs.maintainers or []) ++ [
|
|
|
|
lib.maintainers.cdepillabout
|
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = (oldAttrs.configureFlags or []) ++ ["-fbuildexe"];
|
|
|
|
|
|
|
|
buildDepends = (oldAttrs.buildDepends or []) ++ [haskellPackages.optparse-applicative];
|
2021-12-06 16:07:01 +00:00
|
|
|
}) haskellPackages.pretty-simple)
|
2020-04-24 23:36:52 +00:00
|
|
|
|