Merge pull request #5177 from sivteck/hask-package

add hask, the haskell package
This commit is contained in:
Arseniy Seroka 2014-11-30 13:24:31 +03:00
commit c981f755a0
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, constraints, reflection, tagged, transformers, void }:
cabal.mkDerivation (self: {
pname = "hask";
version = "0";
sha256 = "1c87jxafxpnlyblhdif4br61wqvnad0s6hvfhmzhx9y1jri3rb39";
buildDepends = [ constraints reflection tagged transformers void ];
meta = {
homepage = "http://github.com/ekmett/hask";
description = "Categories";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -1061,6 +1061,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
hashtables = callPackage ../development/libraries/haskell/hashtables {};
hask = callPackage ../development/libraries/haskell/hask {};
haskelldb = callPackage ../development/libraries/haskell/haskelldb {};
haskeline = callPackage ../development/libraries/haskell/haskeline {};