add haskellPackages.haskore

This commit is contained in:
Emil Rangden 2013-12-23 10:22:37 +01:00
parent 1e8dcf3921
commit 5a90dd86da
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ cabal, dataAccessor, eventList, haskellSrc, markovChain, midi
, nonNegative, parsec, random, transformers, utilityHt
}:
cabal.mkDerivation (self: {
pname = "haskore";
version = "0.2.0.3";
sha256 = "0vg4m2cmy1fabfnck9v22jicflb0if64h0wjvyrgpn2ykb9wwbpa";
isLibrary = true;
isExecutable = true;
buildDepends = [
dataAccessor eventList haskellSrc markovChain midi nonNegative
parsec random transformers utilityHt
];
meta = {
homepage = "http://www.haskell.org/haskellwiki/Haskore";
description = "The Haskore Computer Music System";
license = "GPL";
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1207,6 +1207,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
haskellSrcMeta = callPackage ../development/libraries/haskell/haskell-src-meta {};
haskore = callPackage ../development/libraries/haskell/haskore {};
hastache = callPackage ../development/libraries/haskell/hastache {};
hexpat = callPackage ../development/libraries/haskell/hexpat {};