blob: bdec535d07945e4f5ec4677c19f2bb1e16189b6d (
plain)
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
27
28
29
30
31
32
|
{
lib,
buildDunePackage,
fetchurl,
alcotest,
}:
buildDunePackage rec {
pname = "type_eq";
version = "0.0.1";
minimalOCamlVersion = "4.08.1";
src = fetchurl {
url = "https://github.com/skolemlabs/type_eq/releases/download/${version}/${pname}-${version}.tbz";
hash = "sha256-4u/HF92Hbf9Rcv+JTAMPhYZjoKZ1cS0mBMkzU/hxx38=";
};
checkInputs = [
alcotest
];
doCheck = true;
meta = {
description = "Type equality proofs for OCaml 4";
homepage = "https://github.com/skolemlabs/type_eq";
changelog = "https://github.com/skolemlabs/type_eq/blob/${version}/CHANGES.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sixstring982 ];
};
}
|