From 7c274bf9586105e359b40bb1b3b228182c8ae8c2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 18 Apr 2014 13:07:31 -0500 Subject: [PATCH] Add haskell-hmatrix-special-0.2.0 --- .../libraries/haskell/hmatrix-special/default.nix | 14 ++++++++++++++ pkgs/top-level/haskell-packages.nix | 2 ++ 2 files changed, 16 insertions(+) create mode 100644 pkgs/development/libraries/haskell/hmatrix-special/default.nix diff --git a/pkgs/development/libraries/haskell/hmatrix-special/default.nix b/pkgs/development/libraries/haskell/hmatrix-special/default.nix new file mode 100644 index 00000000000..4e9fccbdcd8 --- /dev/null +++ b/pkgs/development/libraries/haskell/hmatrix-special/default.nix @@ -0,0 +1,14 @@ +{ cabal, hmatrix }: + +cabal.mkDerivation (self: { + pname = "hmatrix-special"; + version = "0.2.0"; + sha256 = "0lp8mvagbzayq3r08wgk498n6d9vgb1skb8wzrzi5a1fc5j8m0wj"; + buildDepends = [ hmatrix ]; + meta = { + homepage = "http://perception.inf.um.es/hmatrix"; + description = "Interface to GSL special functions"; + license = "GPL"; + platforms = self.ghc.meta.platforms; + }; +}) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 7c241f9e44d..11c317d57a8 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1426,6 +1426,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x hmatrix = callPackage ../development/libraries/haskell/hmatrix {}; + hmatrix-special = callPackage ../development/libraries/haskell/hmatrix-special {}; + hoauth = callPackage ../development/libraries/haskell/hoauth {}; hoauth2 = callPackage ../development/libraries/haskell/hoauth2 {};