From aefdaaa098754f78ae2bdd086b28420514b1314c Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 4 Dec 2014 00:19:29 -0600 Subject: [PATCH] haskellPackages.unboundGenerics: new expression --- .../haskell/unbound-generics/default.nix | 17 +++++++++++++++++ pkgs/top-level/haskell-packages.nix | 2 ++ 2 files changed, 19 insertions(+) create mode 100644 pkgs/development/libraries/haskell/unbound-generics/default.nix diff --git a/pkgs/development/libraries/haskell/unbound-generics/default.nix b/pkgs/development/libraries/haskell/unbound-generics/default.nix new file mode 100644 index 00000000000..602b28d0aa6 --- /dev/null +++ b/pkgs/development/libraries/haskell/unbound-generics/default.nix @@ -0,0 +1,17 @@ +# This file was auto-generated by cabal2nix. Please do NOT edit manually! + +{ cabal, contravariant, mtl, tasty, tastyHunit, transformers }: + +cabal.mkDerivation (self: { + pname = "unbound-generics"; + version = "0.0.1"; + sha256 = "0iwg1292dpwl8icr8p4nyhns4n0r44q8wv4l22j6i9m61li68al1"; + buildDepends = [ contravariant mtl transformers ]; + testDepends = [ mtl tasty tastyHunit ]; + meta = { + homepage = "http://github.com/lambdageek/unbound-generics"; + description = "Reimplementation of Unbound using GHC Generics"; + 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 8f232dafaea..89a80c3190a 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -2655,6 +2655,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in unboundedDelays = callPackage ../development/libraries/haskell/unbounded-delays {}; + unboundGenerics = callPackage ../development/libraries/haskell/unbound-generics {}; + unificationFd = callPackage ../development/libraries/haskell/unification-fd {}; unionFind = callPackage ../development/libraries/haskell/union-find {};