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

time-units: init at 1.0.0

parent 45a8897d
No related merge requests found
......@@ -245,6 +245,7 @@ let otherLibraries =
(Some "strict-containers")
, H.callHackage "testing-type-modifiers" "0.1.0.1"
, H.callHackage "th-desugar" "1.14"
, H.callHackage "time-units" "1.0.0"
, H.callCabal2nix
"typerep-map"
"https://github.com/parsonsmatt/typerep-map"
......
......@@ -215,6 +215,8 @@ final: prev: with pkgs.haskell.lib; {
th-desugar = final.callPackage (./pkgs/th-desugar.nix) { };
time-units = final.callPackage (./pkgs/time-units.nix) { };
typerep-map = final.callPackage (./pkgs/typerep-map.nix) { };
validation-selective = final.callPackage (./pkgs/validation-selective.nix) { };
......
{ mkDerivation, base, lib }:
mkDerivation {
pname = "time-units";
version = "1.0.0";
sha256 = "e181997dd05321f09b21c5e0bf38524ccab51ecc588a6017253cc96db289e099";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/acw/time-units";
description = "A basic library for defining units of time as types";
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