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

clock: init at 0.8.3

parent 320bf955
Branches
Tags
No related merge requests found
......@@ -133,6 +133,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "cborg-json" "0.2.5.0"
, callHackage "charset" "0.3.9"
, callHackage "citeproc" "0.8.0.1"
, callHackage "clock" "0.8.3"
, callHackage "cmdargs" "0.10.21"
, callHackage "co-log-core" "0.3.1.0"
, callHackage "co-log-polysemy" "0.0.1.3"
......
......@@ -141,6 +141,8 @@ self: with pkgs.haskell.lib; {
citeproc = self.callPackage (./pkgs/citeproc.nix) { };
clock = self.callPackage (./pkgs/clock.nix) { };
cmdargs = self.callPackage (./pkgs/cmdargs.nix) { };
co-log-core = self.callPackage (./pkgs/co-log-core.nix) { };
......
{ mkDerivation, base, criterion, lib, tasty, tasty-quickcheck }:
mkDerivation {
pname = "clock";
version = "0.8.3";
sha256 = "845ce5db4c98cefd517323e005f87effceff886987305e421c4ef616dc0505d1";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base tasty tasty-quickcheck ];
benchmarkHaskellDepends = [ base criterion ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/corsis/clock";
description = "High-resolution clock functions: monotonic, realtime, cputime";
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