nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 fetchurl,
5}:
6
7buildDunePackage rec {
8 pname = "mirage-clock";
9 version = "4.2.0";
10
11 minimalOCamlVersion = "4.06";
12
13 src = fetchurl {
14 url = "https://github.com/mirage/mirage-clock/releases/download/v${version}/mirage-clock-${version}.tbz";
15 hash = "sha256-+hfRXVviPHm6dB9ffLiO1xEt4WpEEM6oHHG5gIaImEc=";
16 };
17
18 meta = {
19 description = "Libraries and module types for portable clocks";
20 homepage = "https://github.com/mirage/mirage-clock";
21 license = lib.licenses.isc;
22 maintainers = [ lib.maintainers.vbgl ];
23 };
24}