at 23.11-beta 12 lines 411 B view raw
1{ haskell, haskellPackages, lib }: 2 3haskell.lib.compose.justStaticExecutables (haskell.lib.compose.overrideCabal (oldAttrs: { 4 maintainers = (oldAttrs.maintainers or []) ++ [ 5 lib.maintainers.cdepillabout 6 ]; 7 8 configureFlags = (oldAttrs.configureFlags or []) ++ ["-fbuildexe"]; 9 10 buildDepends = (oldAttrs.buildDepends or []) ++ [haskellPackages.optparse-applicative]; 11}) haskellPackages.pretty-simple) 12