3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #4705 from jirkamarsik/ghcid

Added ghcid-0.2
This commit is contained in:
Peter Simons 2014-10-28 19:57:54 +01:00
commit da029b982e
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,20 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, cmdargs, filepath, tasty, tastyHunit, time }:
cabal.mkDerivation (self: {
pname = "ghcid";
version = "0.2";
sha256 = "1g0jwj8s0rgwrdgyn6dwrqhf9v4kck5kfr4ggmp9c0mjjyfxq6pf";
isLibrary = true;
isExecutable = true;
buildDepends = [ cmdargs filepath time ];
testDepends = [ cmdargs filepath tasty tastyHunit time ];
doCheck = false;
meta = {
homepage = "https://github.com/ndmitchell/ghcid#readme";
description = "GHCi based bare bones IDE";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

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