blob: baca40db32b0393138c9a94bd4cee88918022f78 (
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
33
34
35
36
37
|
{
lib,
buildDunePackage,
fetchurl,
alcotest,
type_eq,
}:
buildDunePackage rec {
pname = "type_id";
version = "0.0.1";
minimalOCamlVersion = "4.08.1";
src = fetchurl {
url = "https://github.com/skolemlabs/${pname}/releases/download/${version}/${pname}-${version}.tbz";
hash = "sha256-hmVAD9vgU1HLnB7d1TX17V+Alf5ZXmvQgd2nLHnLhDk=";
};
propagatedBuildInputs = [
type_eq
];
checkInputs = [
alcotest
];
doCheck = true;
meta = {
description = "Type identifiers, useful for runtime type-safe casting/coersions";
homepage = "https://github.com/skolemlabs/type_id";
changelog = "https://github.com/skolemlabs/type_id/blob/${version}/CHANGES.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sixstring982 ];
};
}
|