summary refs log tree commit diff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-03-13 00:38:26 +0000
committerGitHub <noreply@github.com>2021-03-13 00:38:26 +0000
commitb0a6c2b8a596aa3da72d003cd3a5e6556eff9072 (patch)
treee9d992a756aba0203b1e94b8ebc34f7116db17a5 /pkgs/development/misc
parentf747bcb8687791bd3eedeb0b7f0e679e34c79f9c (diff)
parentd70c7d2388f830f2d2411423a06ea75d15b6b294 (diff)
downloadnixpkgs-b0a6c2b8a596aa3da72d003cd3a5e6556eff9072.tar
nixpkgs-b0a6c2b8a596aa3da72d003cd3a5e6556eff9072.tar.gz
nixpkgs-b0a6c2b8a596aa3da72d003cd3a5e6556eff9072.tar.bz2
nixpkgs-b0a6c2b8a596aa3da72d003cd3a5e6556eff9072.tar.lz
nixpkgs-b0a6c2b8a596aa3da72d003cd3a5e6556eff9072.tar.xz
nixpkgs-b0a6c2b8a596aa3da72d003cd3a5e6556eff9072.tar.zst
nixpkgs-b0a6c2b8a596aa3da72d003cd3a5e6556eff9072.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix b/pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix
new file mode 100644
index 00000000000..7f49430c15c
--- /dev/null
+++ b/pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix
@@ -0,0 +1,21 @@
+{ mkDerivation, ansi-wl-pprint, base, fetchgit, lib, process, QuickCheck
+, transformers, transformers-compat
+}:
+mkDerivation {
+  pname = "hercules-ci-optparse-applicative";
+  version = "0.16.1.0";
+  src = fetchgit {
+    url = "https://github.com/hercules-ci/optparse-applicative.git";
+    sha256 = "0v0r11jaav95im82if976256kncp0ji7nfdrlpbgmwxnkj1hxl48";
+    rev = "f9d1242f9889d2e09ff852db9dc2d231d9a3e8d8";
+    fetchSubmodules = true;
+  };
+  libraryHaskellDepends = [
+    ansi-wl-pprint base process transformers transformers-compat
+  ];
+  testHaskellDepends = [ base QuickCheck ];
+  homepage = "https://github.com/hercules-ci/optparse-applicative";
+  description = "Utilities and combinators for parsing command line options (fork)";
+  license = lib.licenses.bsd3;
+  maintainers = with lib.maintainers; [ roberth ];
+}