mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
36 lines
855 B
Nix
36 lines
855 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, findlib
|
|
, ocaml
|
|
, lem
|
|
}:
|
|
|
|
lib.throwIfNot (lib.versionAtLeast ocaml.version "4.07")
|
|
"linksem is not available for OCaml ${ocaml.version}"
|
|
|
|
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 = with lib; {
|
|
homepage = "https://github.com/rems-project/linksem";
|
|
description = "Formalisation of substantial parts of ELF linking and DWARF debug information";
|
|
maintainers = with maintainers; [ genericnerdyusername ];
|
|
license = licenses.bsd2;
|
|
platforms = ocaml.meta.platforms;
|
|
};
|
|
}
|