blob: 4a575addf0b4a278de57a8fa573b40d77d410ee2 (
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
38
|
{
lib,
fetchFromGitHub,
stdenv,
findlib,
ocaml,
lem,
}:
stdenv.mkDerivation rec {
pname = "ocaml${ocaml.version}-linksem";
version = "0.8";
src = fetchFromGitHub {
owner = "rems-project";
repo = "linksem";
rev = version;
hash = "sha256-7/YfDK3TruKCckMzAPLRrwBkHRJcX1S+AzXHWRxkZPA=";
};
nativeBuildInputs = [
findlib
ocaml
];
propagatedBuildInputs = [ lem ];
createFindlibDestdir = true;
meta = {
homepage = "https://github.com/rems-project/linksem";
description = "Formalisation of substantial parts of ELF linking and DWARF debug information";
maintainers = [ ];
license = lib.licenses.bsd2;
platforms = ocaml.meta.platforms;
broken = !(lib.versionAtLeast ocaml.version "4.07");
};
}
|