Add hdevtools

4 spaces per indent
This commit is contained in:
Thomas Bereknyei
2013-11-23 16:12:21 -05:00
parent 7f791a6449
commit 53f05a812f
2 changed files with 18 additions and 0 deletions
@@ -0,0 +1,16 @@
{ cabal, cmdargs, ghcPaths, network, syb, time }:
cabal.mkDerivation (self: {
pname = "hdevtools";
version = "0.1.0.5";
sha256 = "1a218m817q35f52fv6mn28sfv136i6fm2mzgdidpm24pc0585gl7";
isLibrary = false;
isExecutable = true;
buildDepends = [ cmdargs ghcPaths network syb time ];
meta = {
homepage = "https://github.com/bitc/hdevtools/";
description = "Persistent GHC powered background server for FAST haskell development tools";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})