18 lines
740 B
Nix
18 lines
740 B
Nix
{ cabal, cmdargs, ghcPaths, network, syb, time, fetchpatch }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hdevtools";
|
|
version = "0.1.0.6-pre-github-schell-9e34f7dd";
|
|
sha256 = "1a218m817q35f52fv6mn28sfv136i6fm2mzgdidpm24pc0585gl7";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
patches = [ (fetchpatch { url = "https://github.com/ts468/hdevtools/pull/2.diff"; sha256 = "0pwgxm4mh29qm79kg0gc6a90lzjbmh8rf4pc3hx2zqgb5f3l2abs"; }) ];
|
|
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;
|
|
};
|
|
})
|