aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/pretty-simple
diff options
context:
space:
mode:
authorSerhii Khoma <srghma@gmail.com>2020-01-27 20:28:43 +0200
committerSerhii Khoma <srghma@gmail.com>2020-01-27 20:28:43 +0200
commitb714ca52b2b7972aa7e9bc7deb86abd6de66c76d (patch)
tree72011d9cc7411a3f0f60afc221ebc6f9632aa219 /pkgs/development/tools/pretty-simple
parentba8fbd5352b8aca9410b10c8aa78e84740529e87 (diff)
pretty-simple: init at 2.2.0.1
Diffstat (limited to 'pkgs/development/tools/pretty-simple')
-rw-r--r--pkgs/development/tools/pretty-simple/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/tools/pretty-simple/default.nix b/pkgs/development/tools/pretty-simple/default.nix
new file mode 100644
index 000000000000..c55e176176d9
--- /dev/null
+++ b/pkgs/development/tools/pretty-simple/default.nix
@@ -0,0 +1,12 @@
+{ 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];
+}))
+