Added scion.

svn path=/nixpkgs/trunk/; revision=16876
This commit is contained in:
Andres Löh 2009-08-27 07:01:48 +00:00
parent 543483d99f
commit 39b651fb44
2 changed files with 15 additions and 0 deletions

@ -0,0 +1,11 @@
{cabal, ghcPaths, ghcSyb, hslogger, json, multiset, time, uniplate}:
cabal.mkDerivation (self : {
pname = "scion";
version = "0.1";
sha256 = "5c9fd9922182abed57c6ec260dfa497de411124c63851a72c640232b9cf78d83";
propagatedBuildInputs = [ghcPaths ghcSyb hslogger json multiset time uniplate];
meta = {
description = "Haskell IDE library";
};
})

@ -366,6 +366,10 @@ rec {
inherit cabal;
};
scion = import ../development/libraries/haskell/scion {
inherit cabal ghcPaths ghcSyb hslogger json multiset time uniplate;
};
syb = import ../development/libraries/haskell/syb {
inherit cabal;
};