cabal2nix-2.19.0: test/golden-test-cases/ghcid.nix.golden
{ mkDerivation, ansi-terminal, base, cmdargs, containers, directory
, extra, filepath, fsnotify, lib, process, tasty, tasty-hunit
, terminal-size, time, unix
}:
mkDerivation {
pname = "ghcid";
version = "0.6.8";
sha256 = "deadbeef";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base cmdargs directory extra filepath process time unix
];
executableHaskellDepends = [
ansi-terminal base cmdargs containers directory extra filepath
fsnotify process terminal-size time unix
];
testHaskellDepends = [
ansi-terminal base cmdargs containers directory extra filepath
fsnotify process tasty tasty-hunit terminal-size time unix
];
homepage = "https://github.com/ndmitchell/ghcid#readme";
description = "GHCi based bare bones IDE";
license = lib.licenses.bsd3;
mainProgram = "ghcid";
}