From 45b9b6f2cf7c6c03e7ef22a2c574fe81da797412 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 8 Aug 2014 16:08:04 +0200 Subject: [PATCH] haskell-haskintex: add version 0.5.0.0 --- .../libraries/haskell/haskintex/default.nix | 22 +++++++++++++++++++ pkgs/top-level/haskell-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/development/libraries/haskell/haskintex/default.nix diff --git a/pkgs/development/libraries/haskell/haskintex/default.nix b/pkgs/development/libraries/haskell/haskintex/default.nix new file mode 100644 index 00000000000..776d5198bc7 --- /dev/null +++ b/pkgs/development/libraries/haskell/haskintex/default.nix @@ -0,0 +1,22 @@ +# This file was auto-generated by cabal2nix. Please do NOT edit manually! + +{ cabal, binary, filepath, haskellSrcExts, HaTeX, hint, parsec +, text, transformers +}: + +cabal.mkDerivation (self: { + pname = "haskintex"; + version = "0.5.0.0"; + sha256 = "1ixb8lwgk2bkm36c173x8y2a14ylax5bdrqw4blxm4qia7xidc5i"; + isLibrary = true; + isExecutable = true; + buildDepends = [ + binary filepath haskellSrcExts HaTeX hint parsec text transformers + ]; + meta = { + homepage = "http://daniel-diaz.github.io/projects/haskintex"; + description = "Haskell Evaluation inside of LaTeX code"; + 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 30a32916fa5..c6c3084d46a 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -1056,6 +1056,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in haskellTokenUtils = callPackage ../development/libraries/haskell/haskell-token-utils {}; + haskintex = callPackage ../development/libraries/haskell/haskintex {}; + haskore = callPackage ../development/libraries/haskell/haskore {}; hastache = callPackage ../development/libraries/haskell/hastache {};