about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/idris-modules/hrtime.nix
blob: 7f4d0769cc4141da91e108cfd17484b18c8b3b98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ build-idris-package
, fetchFromGitHub
, idrisscript
, lib
}:
build-idris-package  {
  name = "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 ];
  };
}