about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/semver/default.nix
blob: 5f4880c0cf2efac49158347c2c148286f3995cbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, fetchurl, buildDunePackage, ocaml, alcotest }:

buildDunePackage rec {
  pname = "semver";
  version = "0.2.1";
  src = fetchurl {
    url = "https://github.com/rgrinberg/ocaml-semver/releases/download/${version}/semver-${version}.tbz";
    hash = "sha256-CjzDUtoe5Hvt6zImb+EqVIulRUUUQd9MmuJ4BH/2mLg=";
  };

  doCheck = lib.versionAtLeast ocaml.version "4.08";
  checkInputs = [ alcotest ];

  meta = {
    homepage = "https://github.com/rgrinberg/ocaml-semver";
    description = "Semantic versioning module";
    license = lib.licenses.bsd3;
    maintainers = [ lib.maintainers.ulrikstrid ];
  };
}