mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 08:47:33 +00:00
ocamlPackages.duration: init at 0.1.3
This commit is contained in:
parent
de6891ffd0
commit
b70b03272a
22
pkgs/development/ocaml-modules/duration/default.nix
Normal file
22
pkgs/development/ocaml-modules/duration/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, buildDunePackage, fetchurl, alcotest }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "duration";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/hannesm/duration/releases/download/${version}/duration-${version}.tbz";
|
||||
sha256 = "0m9r0ayhpl98g9vdxrbjdcllns274jilic5v8xj1x7dphw21p95h";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
checkInputs = lib.optional doCheck alcotest;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/hannesm/duration";
|
||||
description = "Conversions to various time units";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
|
||||
}
|
@ -234,6 +234,8 @@ let
|
||||
|
||||
dune-private-libs = callPackage ../development/ocaml-modules/dune-private-libs { };
|
||||
|
||||
duration = callPackage ../development/ocaml-modules/duration { };
|
||||
|
||||
earley = callPackage ../development/ocaml-modules/earley { };
|
||||
|
||||
earlybird = callPackage ../development/ocaml-modules/earlybird { };
|
||||
|
Loading…
Reference in New Issue
Block a user