From cc6331d0fe6dc2dd81a3a450f3c3b84e9504cab8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 30 Dec 2013 20:38:54 +0100 Subject: [PATCH] haskell-Elm: update to version 0.10.1 --- pkgs/development/compilers/elm/elm.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/compilers/elm/elm.nix b/pkgs/development/compilers/elm/elm.nix index 6fc65bf368b..0f3c4d2ef64 100644 --- a/pkgs/development/compilers/elm/elm.nix +++ b/pkgs/development/compilers/elm/elm.nix @@ -1,18 +1,18 @@ { cabal, aeson, aesonPretty, binary, blazeHtml, blazeMarkup , cmdargs, filepath, HTF, indents, languageEcmascript, mtl, pandoc -, parsec, text, transformers, unionFind, uniplate +, parsec, text, transformers, unionFind, unorderedContainers }: cabal.mkDerivation (self: { pname = "Elm"; - version = "0.10.0.2"; - sha256 = "08aqz9lf754ygdwvjf4bs5ivnjyjx9rd43vrbzp0p4d3if6w6avz"; + version = "0.10.1"; + sha256 = "1y533vanhrxc14x304ig6q8ch6zih8yqgpfgw4h5vk5fpdmn09a2"; isLibrary = true; isExecutable = true; buildDepends = [ aeson aesonPretty binary blazeHtml blazeMarkup cmdargs filepath indents languageEcmascript mtl pandoc parsec text transformers - unionFind uniplate + unionFind unorderedContainers ]; testDepends = [ HTF ]; doCheck = false;