nixpkgs/pkgs/development/tools/haskell/hdevtools/default.nix

18 lines
714 B
Nix
Raw Normal View History

2014-06-09 05:19:52 +02:00
{ cabal, cmdargs, ghcPaths, network, syb, time, fetchpatch }:
2013-11-18 04:16:33 +01:00
cabal.mkDerivation (self: {
pname = "hdevtools";
version = "0.1.0.5";
sha256 = "1a218m817q35f52fv6mn28sfv136i6fm2mzgdidpm24pc0585gl7";
isLibrary = false;
isExecutable = true;
2014-06-09 05:19:52 +02:00
patches = [ (fetchpatch { url = "https://github.com/bitc/hdevtools/pull/28.patch"; sha256 = "1rlv5zskg4ns9ba791x72gycxrr52lhy8x164q38gpq600gh5n40"; }) ];
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;
};
2013-11-18 04:16:33 +01:00
})