nixpkgs/pkgs/development/libraries/haskell/system-time-monotonic/default.nix
2014-05-09 22:50:36 +02:00

15 lines
451 B
Nix

{ 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;
};
})