haskell-ghc-server: initial expression

This commit is contained in:
Michel Kuhlmann 2014-09-04 12:17:15 +02:00 committed by Peter Simons
parent e5878fa70b
commit 83683c4140
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,22 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, async, attoLisp, attoparsec, conduit, conduitExtra
, ghcPaths, mtl, network, syb, text
}:
cabal.mkDerivation (self: {
pname = "ghc-server";
version = "1.1";
sha256 = "1rgrgx9xakq6vy6nanvwzwfvzbfg287pmm8pdm9lbd7kf7ls5ml4";
isLibrary = true;
isExecutable = true;
buildDepends = [
async attoLisp attoparsec conduit conduitExtra ghcPaths mtl network
syb text
];
meta = {
description = "A server interface to GHC";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -901,6 +901,9 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
cabal = self.cabal.override { enableLibraryProfiling = false; }; # pkg cannot be built with profiling enabled
};
ghcServer = callPackage ../development/libraries/haskell/ghc-server {};
ghcjsDom = callPackage ../development/libraries/haskell/ghcjs-codemirror {};
ghcjsCodemirror = callPackage ../development/libraries/haskell/ghcjs-codemirror {};