Files
nixpkgs/pkgs/development/ocaml-modules/linksem/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

39 lines
814 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 = with lib.maintainers; [ genericnerdyusername ];
license = lib.licenses.bsd2;
platforms = ocaml.meta.platforms;
broken = !(lib.versionAtLeast ocaml.version "4.07");
};
}