My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/hrtime.nix

26 lines
626 B

{ build-idris-package
, fetchFromGitHub
, idrisscript
, lib
}:
build-idris-package {
pname = "hrtime";
version = "2017-04-16";
ipkgName = "hrTime";
idrisDeps = [ idrisscript ];
src = fetchFromGitHub {
owner = "pierrebeaucamp";
repo = "idris-hrtime";
rev = "e1f54ce74bde871010ae76d9afd42048cd2aae83";
sha256 = "0rmmpi1kp1h7ficmcxbxkny9lq9pjli2qhwy17vgbgx8fx60m8l0";
};
meta = {
description = "Idris library for high resolution time";
homepage = "https://github.com/pierrebeaucamp/idris-hrtime";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.brainrape ];
};
}