add haskellPackages.ixdopp

This commit is contained in:
Jan Malakhovski 2014-02-06 01:18:43 +00:00
parent 515d4ad8fe
commit a8db8e15e6
2 changed files with 20 additions and 0 deletions

@ -0,0 +1,16 @@
{ cabal, preprocessorTools, syb }:
cabal.mkDerivation (self: {
pname = "ixdopp";
version = "0.1.3";
sha256 = "1vknwznk42b33q4pmh6z620g761yf3cmsmrmhilgq42i5qhll4d4";
isLibrary = false;
isExecutable = true;
buildDepends = [ preprocessorTools ];
meta = {
homepage = "http://www.eecs.harvard.edu/~tov/pubs/haskell-session-types/";
description = "Expands a Haskell program using ixdo notation into a Haskell program using the indexed monad bind operator (>>>=)";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

@ -1489,6 +1489,10 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
ivor = callPackage ../development/libraries/haskell/ivor {};
ixdopp = callPackage ../development/libraries/haskell/ixdopp {
preprocessorTools = self.preprocessorTools_0_1_3;
};
ixShapable = callPackage ../development/libraries/haskell/ix-shapable {};
JuicyPixels = callPackage ../development/libraries/haskell/JuicyPixels {};