packages feed

cabal2nix-2.8.2: test/golden-test-cases/tasty-rerun.nix.golden

{ mkDerivation, base, containers, fetchurl, mtl
, optparse-applicative, reducers, split, stm, tagged, tasty
, transformers
}:
mkDerivation {
  pname = "tasty-rerun";
  version = "1.1.8";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [
    base containers mtl optparse-applicative reducers split stm tagged
    tasty transformers
  ];
  homepage = "http://github.com/ocharles/tasty-rerun";
  description = "Run tests by filtering the test tree depending on the result of previous test runs";
  license = stdenv.lib.licenses.bsd3;
}