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

cabal.mkDerivation (self: {
  pname = "tasty-golden";
  version = "2.2.0.2";
  sha256 = "0wy29ybb31g34gjyx95an3azh111crvrrdhbbihjj064xvf6ddmy";
  buildDepends = [
    filepath mtl optparseApplicative tagged tasty temporary
  ];
  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 ];
  };
})