summaryrefslogtreecommitdiffstats
path: root/pkgs/haskell/much.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/haskell/much.nix')
-rw-r--r--pkgs/haskell/much.nix33
1 files changed, 18 insertions, 15 deletions
diff --git a/pkgs/haskell/much.nix b/pkgs/haskell/much.nix
index 9744a25..6a573fc 100644
--- a/pkgs/haskell/much.nix
+++ b/pkgs/haskell/much.nix
@@ -2,18 +2,19 @@
, blaze-builder, blessings, bytestring, case-insensitive
, containers, data-default, deepseq, directory, either
, email-header, fetchgit, filepath, friendly-time, http-types
-, hyphenation, lib, linebreak, network, old-locale
-, optparse-applicative, process, random, rosezipper, safe
-, servant-server, split, terminal-scanner, terminal-size, text
-, time, transformers, transformers-compat, unix, vector, wai, warp
+, hyphenation, lib, linebreak, mono-traversable, network
+, old-locale, optparse-applicative, process, process-extras, random
+, rosezipper, safe, servant-server, split, terminal-scanner
+, terminal-size, text, text-wcwidth, time, transformers
+, transformers-compat, unix, vector, wai, warp
}:
-mkDerivation rec {
+mkDerivation {
pname = "much";
- version = "1.3.2";
+ version = "1.4.2";
src = fetchgit {
url = "https://cgit.krebsco.de/much";
- sha256 = "001lvn4f3pgxwq0fgxvk0jl33r54gvh908r6wx02fw4s6b3sysc0";
- rev = "3a0fe1da7c33b024128079f5810c6a99b25aebe7";
+ sha256 = "1michcp8j1d84gpcyp5m4jrp2lvs1al38glrixkr3xdgaxrs8iqb";
+ rev = "8ba70458b8f5949db00c5840c76027c317bf6bc4";
fetchSubmodules = true;
};
isLibrary = true;
@@ -22,16 +23,18 @@ mkDerivation rec {
aeson attoparsec base base64-bytestring blaze-builder blessings
bytestring case-insensitive containers data-default deepseq
directory either email-header filepath friendly-time http-types
- hyphenation linebreak network old-locale optparse-applicative
- process random rosezipper safe servant-server split
- terminal-scanner terminal-size text time transformers
- transformers-compat unix vector wai warp
+ hyphenation linebreak mono-traversable network old-locale
+ optparse-applicative process process-extras random rosezipper safe
+ servant-server split terminal-scanner terminal-size text
+ text-wcwidth time transformers transformers-compat unix vector wai
+ warp
];
executableHaskellDepends = [
aeson base blessings bytestring case-insensitive containers
- data-default deepseq directory filepath hyphenation linebreak
- process rosezipper safe terminal-scanner text time transformers
- unix
+ data-default deepseq directory hyphenation linebreak
+ mono-traversable process rosezipper safe terminal-scanner text
+ text-wcwidth time transformers
];
license = lib.licenses.mit;
+ mainProgram = "much";
}