mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
13 lines
395 B
Nix
13 lines
395 B
Nix
{ haskell, haskellPackages, lib }:
|
|
|
|
haskell.lib.justStaticExecutables (haskell.lib.overrideCabal haskellPackages.pretty-simple (oldAttrs: {
|
|
maintainers = (oldAttrs.maintainers or []) ++ [
|
|
lib.maintainers.cdepillabout
|
|
];
|
|
|
|
configureFlags = (oldAttrs.configureFlags or []) ++ ["-fbuildexe"];
|
|
|
|
buildDepends = (oldAttrs.buildDepends or []) ++ [haskellPackages.optparse-applicative];
|
|
}))
|
|
|