summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/tasty-golden/default.nix
blob: 159a5fd9eb896a547695b928ed09efa2943778b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, deepseq, filepath, mtl, optparseApplicative, tagged, tasty
, temporaryRc
}:

cabal.mkDerivation (self: {
  pname = "tasty-golden";
  version = "2.2.1.1";
  sha256 = "0a265l7fwc0sxzdy9b0jf8f5w4nws6pwhhaw1pa7qx3c8fm9v54i";
  buildDepends = [
    deepseq filepath mtl optparseApplicative tagged tasty temporaryRc
  ];
  meta = {
    homepage = "https://github.com/feuerbach/tasty-golden";
    description = "Golden tests support for tasty";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.ocharles ];
  };
})