summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hspec-discover/default.nix
blob: 8a4a79eae97fb7cde55853f687aee3fc9a2330fd (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, filepath, hspecMeta }:

cabal.mkDerivation (self: {
  pname = "hspec-discover";
  version = "2.1.2";
  sha256 = "0zv215br94agvg8dbz0f5az5cahgnw8gdx0z84zlrpjxkzf3rb19";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ filepath ];
  testDepends = [ filepath hspecMeta ];
  noHaddock = true;
  meta = {
    homepage = "http://hspec.github.io/";
    description = "Automatically discover and run Hspec tests";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})