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

timeit: init at 2.0

parent 4f8aed6b
Branches
Tags
No related merge requests found
......@@ -661,6 +661,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "th-orphans" "0.13.14"
, callHackage "th-reify-many" "0.1.10"
, callHackage "tidal" "1.8.1"
, callHackage "timeit" "2.0"
, callHackage "time-compat" "1.9.6.1"
, callCabal2nix
"time-effectful"
......
......@@ -965,6 +965,8 @@ self: with pkgs.haskell.lib; {
time-effectful = self.callPackage (./pkgs/time-effectful.nix) { };
timeit = self.callPackage (./pkgs/timeit.nix) { };
tls = self.callPackage (./pkgs/tls.nix) { };
tls-session-manager = self.callPackage (./pkgs/tls-session-manager.nix) { };
......
{ mkDerivation, base, lib }:
mkDerivation {
pname = "timeit";
version = "2.0";
sha256 = "a14df4e578db371e5c609f0784209144545f9cae90026d24a3398042f7c591ea";
revision = "2";
editedCabalFile = "1vgxfk2021jh6jk3dimchmf9f71844zj080342qvnn5lck7c7mrm";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/merijn/timeit";
description = "Time monadic computations with an IO base";
license = lib.licenses.bsd3;
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