21 lines
643 B
Nix
21 lines
643 B
Nix
|
# 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;
|
||
|
};
|
||
|
})
|