biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / pretty-simple / default.nix
blob0a33b6e6b2eaff3b7dfbea2ca32891ca5c7e0f8c
1 { haskell, haskellPackages, lib }:
3 haskell.lib.compose.justStaticExecutables (haskell.lib.compose.overrideCabal (oldAttrs: {
4   maintainers = (oldAttrs.maintainers or []) ++ [
5     lib.maintainers.cdepillabout
6   ];
8   configureFlags = (oldAttrs.configureFlags or []) ++ ["-fbuildexe"];
10   buildDepends = (oldAttrs.buildDepends or []) ++ [haskellPackages.optparse-applicative];
11 }) haskellPackages.pretty-simple)