1 { haskell, haskellPackages, lib }:
3 haskell.lib.compose.justStaticExecutables (haskell.lib.compose.overrideCabal (oldAttrs: {
4 maintainers = (oldAttrs.maintainers or []) ++ [
5 lib.maintainers.cdepillabout
8 configureFlags = (oldAttrs.configureFlags or []) ++ ["-fbuildexe"];
10 buildDepends = (oldAttrs.buildDepends or []) ++ [haskellPackages.optparse-applicative];
11 }) haskellPackages.pretty-simple)