Skip to content
Snippets Groups Projects
Commit 0e4f52e2 authored by Daniel Firth's avatar Daniel Firth
Browse files

tasty-bench: init at 0.3.2

parent 7bb00c41
Branches
Tags
No related merge requests found
...@@ -593,6 +593,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -593,6 +593,7 @@ in [ callHackage "Cabal" "3.8.1.0"
"https://github.com/UnkindPartition/tasty" "https://github.com/UnkindPartition/tasty"
(None Text) (None Text)
(Some "core") (Some "core")
, callHackage "tasty-bench" "0.3.2"
, callHackage "tasty-discover" "5.0.0" , callHackage "tasty-discover" "5.0.0"
, callHackage "tasty-expected-failure" "0.12.3" , callHackage "tasty-expected-failure" "0.12.3"
, callCabal2nix , callCabal2nix
......
...@@ -841,6 +841,8 @@ self: with pkgs.haskell.lib; { ...@@ -841,6 +841,8 @@ self: with pkgs.haskell.lib; {
tasty = self.callPackage (./pkgs/tasty.nix) { }; tasty = self.callPackage (./pkgs/tasty.nix) { };
tasty-bench = self.callPackage (./pkgs/tasty-bench.nix) { };
tasty-discover = self.callPackage (./pkgs/tasty-discover.nix) { }; tasty-discover = self.callPackage (./pkgs/tasty-discover.nix) { };
tasty-expected-failure = self.callPackage (./pkgs/tasty-expected-failure.nix) { }; tasty-expected-failure = self.callPackage (./pkgs/tasty-expected-failure.nix) { };
......
{ mkDerivation, base, containers, deepseq, lib, tasty }:
mkDerivation {
pname = "tasty-bench";
version = "0.3.2";
sha256 = "c83a3d3c37bb652274d062857616a9d1871031e624f5f7139e1cbbf1f47b2249";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base containers deepseq tasty ];
benchmarkHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/Bodigrim/tasty-bench";
description = "Featherlight benchmark framework";
license = lib.licenses.mit;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment