From 115906c52ef4ac6038b1bcd998415e39ec7872c9 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 21 Sep 2014 12:20:48 +0200 Subject: [PATCH] add shell-conduit 1.1 --- .../haskell/shell-conduit/default.nix | 21 +++++++++++++++++++ pkgs/top-level/haskell-packages.nix | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/development/libraries/haskell/shell-conduit/default.nix diff --git a/pkgs/development/libraries/haskell/shell-conduit/default.nix b/pkgs/development/libraries/haskell/shell-conduit/default.nix new file mode 100644 index 00000000000..db2f9cc0d73 --- /dev/null +++ b/pkgs/development/libraries/haskell/shell-conduit/default.nix @@ -0,0 +1,21 @@ +# This file was auto-generated by cabal2nix. Please do NOT edit manually! + +{ cabal, conduit, conduitExtra, controlMonadLoop, filepath +, monadControl, monadsTf, resourcet, split, text, transformers +, transformersBase +}: + +cabal.mkDerivation (self: { + pname = "shell-conduit"; + version = "1.1"; + sha256 = "0sv4v1675qrn46j5qwq739al6jj7vqwc61lsyb513nlgw0cwgvr9"; + buildDepends = [ + conduit conduitExtra controlMonadLoop filepath monadControl + monadsTf resourcet split text transformers transformersBase + ]; + meta = { + description = "Write shell scripts with Conduit"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 372f7b1863e..1f496677fad 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -2213,6 +2213,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in shelly_1_5_3_1 = callPackage ../development/libraries/haskell/shelly {}; shelly = self.shelly_1_5_3_1; + shell-conduit = callPackage ../development/libraries/haskell/shell-conduit {}; + simpleConduit = callPackage ../development/libraries/haskell/simple-conduit {}; simpleReflect = callPackage ../development/libraries/haskell/simple-reflect {};