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

monad-time: init at 0.4.0.0

parent d9620a07
No related merge requests found
......@@ -287,6 +287,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "memory" "0.18.0"
, callHackage "microstache" "1.0.2.2"
, callHackage "monad-control" "1.0.3.1"
, callHackage "monad-time" "0.4.0.0"
, callHackage "monad-par" "0.3.5"
, callHackage "monoid-subclasses" "1.1.3"
, callHackage "network-byte-order" "0.1.6"
......
......@@ -337,6 +337,8 @@ final: prev: with pkgs.haskell.lib; {
monad-par = prev.callPackage (./pkgs/monad-par.nix) { };
monad-time = prev.callPackage (./pkgs/monad-time.nix) { };
monoid-subclasses = prev.callPackage (./pkgs/monoid-subclasses.nix) { };
net-mqtt = prev.callPackage (./pkgs/net-mqtt.nix) { };
......
{ mkDerivation, base, lib, mtl, time }:
mkDerivation {
pname = "monad-time";
version = "0.4.0.0";
sha256 = "b4493edf9e7f839cb4ccfcdd53845de493bffbb3ceb4fbb54ba173db68192960";
libraryHaskellDepends = [ base mtl time ];
testHaskellDepends = [ base mtl time ];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/scrive/monad-time";
description = "Type class for monads which carry the notion of the current time";
license = lib.licenses.bsd3;
}
\ No newline at end of file
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