nixpkgs/pkgs/development/tools/haskell/ghcid/default.nix
2014-11-01 21:08:02 +01:00

25 lines
711 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, cmdargs, extra, filepath, tasty, tastyHunit, terminalSize
, time
}:
cabal.mkDerivation (self: {
pname = "ghcid";
version = "0.3.1";
sha256 = "09dyynqa42q6rcms8pghlyih8a3fahb5fbhc500grqc094kgfs7c";
isLibrary = true;
isExecutable = true;
buildDepends = [ cmdargs extra filepath terminalSize time ];
testDepends = [
cmdargs extra filepath tasty tastyHunit terminalSize 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;
};
})