about summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/ghcid/default.nix
blob: a14eb1b48f5807632ea61c781dc21e132f7c9051 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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;
  };
})