haskell-hdevtools: re-generate expression with cabal2nix

This commit is contained in:
Peter Simons 2013-11-26 11:39:56 +01:00
parent a5e6f9c09e
commit 99a4fcfc1b

View File

@ -1,16 +1,16 @@
{ cabal, cmdargs, ghcPaths, network, syb, time }: { cabal, cmdargs, ghcPaths, network, syb, time }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "hdevtools"; pname = "hdevtools";
version = "0.1.0.5"; version = "0.1.0.5";
sha256 = "1a218m817q35f52fv6mn28sfv136i6fm2mzgdidpm24pc0585gl7"; sha256 = "1a218m817q35f52fv6mn28sfv136i6fm2mzgdidpm24pc0585gl7";
isLibrary = false; isLibrary = false;
isExecutable = true; isExecutable = true;
buildDepends = [ cmdargs ghcPaths network syb time ]; buildDepends = [ cmdargs ghcPaths network syb time ];
meta = { meta = {
homepage = "https://github.com/bitc/hdevtools/"; homepage = "https://github.com/bitc/hdevtools/";
description = "Persistent GHC powered background server for FAST haskell development tools"; description = "Persistent GHC powered background server for FAST haskell development tools";
license = self.stdenv.lib.licenses.mit; license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;
}; };
}) })