about summary refs log tree commit diff
path: root/pkgs/development/tools/pretty-simple/default.nix
blob: 0a33b6e6b2eaff3b7dfbea2ca32891ca5c7e0f8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ haskell, haskellPackages, lib }:

haskell.lib.compose.justStaticExecutables (haskell.lib.compose.overrideCabal (oldAttrs: {
  maintainers = (oldAttrs.maintainers or []) ++ [
    lib.maintainers.cdepillabout
  ];

  configureFlags = (oldAttrs.configureFlags or []) ++ ["-fbuildexe"];

  buildDepends = (oldAttrs.buildDepends or []) ++ [haskellPackages.optparse-applicative];
}) haskellPackages.pretty-simple)