mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
39 lines
771 B
Nix
39 lines
771 B
Nix
{
|
|
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");
|
|
};
|
|
}
|