Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 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