fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ build-idris-package
2, fetchFromGitHub
3, idrisscript
4, lib
5}:
6build-idris-package {
7 name = "hrtime";
8 version = "2017-04-16";
9
10 ipkgName = "hrTime";
11 idrisDeps = [ idrisscript ];
12
13 src = fetchFromGitHub {
14 owner = "pierrebeaucamp";
15 repo = "idris-hrtime";
16 rev = "e1f54ce74bde871010ae76d9afd42048cd2aae83";
17 sha256 = "0rmmpi1kp1h7ficmcxbxkny9lq9pjli2qhwy17vgbgx8fx60m8l0";
18 };
19
20 meta = {
21 description = "Idris library for high resolution time";
22 homepage = "https://github.com/pierrebeaucamp/idris-hrtime";
23 license = lib.licenses.asl20;
24 maintainers = [ lib.maintainers.brainrape ];
25 };
26}