haskell-system-time-monotonic: new expression

This commit is contained in:
Benno Fünfstück 2014-05-05 17:33:05 +02:00
parent 2525aac134
commit 97dde61662
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{ cabal, time }:
cabal.mkDerivation (self: {
pname = "system-time-monotonic";
version = "0.2";
sha256 = "0f5grhh6x2fbawmdk0gq1nsjz47iz8f8r2592d1l69fqddwdhc3v";
buildDepends = [ time ];
meta = {
homepage = "https://github.com/joeyadams/haskell-system-time-monotonic";
description = "Simple library for using the system's monotonic clock";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -2500,6 +2500,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
systemPosixRedirect = callPackage ../development/libraries/haskell/system-posix-redirect {};
systemTimeMonotonic = callPackage ../development/libraries/haskell/system-time-monotonic {};
TableAlgebra = callPackage ../development/libraries/haskell/TableAlgebra {};
tabular = callPackage ../development/libraries/haskell/tabular {};