mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 09:23:37 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
80 lines
1.7 KiB
Nix
80 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildDunePackage,
|
|
base64,
|
|
omd,
|
|
menhir,
|
|
ott,
|
|
linenoise,
|
|
dune-site,
|
|
pprint,
|
|
makeWrapper,
|
|
lem,
|
|
linksem,
|
|
yojson,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "sail";
|
|
version = "0.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rems-project";
|
|
repo = "sail";
|
|
rev = version;
|
|
hash = "sha256-HY/rgWi0S7ZiAWZF0fVIRK6fpoJ7Xp5EQcxoPRCPJ5Y=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
ott
|
|
menhir
|
|
lem
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
base64
|
|
omd
|
|
dune-site
|
|
linenoise
|
|
pprint
|
|
linksem
|
|
yojson
|
|
];
|
|
|
|
preBuild = ''
|
|
rm -r aarch* # Remove code derived from non-bsd2 arm spec
|
|
rm -r snapshots # Some of this might be derived from stuff in the aarch dir, it builds fine without it
|
|
'';
|
|
# `buildDunePackage` only builds the [pname] package
|
|
# This doesnt work in this case, as sail includes multiple packages in the same source tree
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
dune build --release ''${enableParallelBuilding:+-j $NIX_BUILD_CORES}
|
|
runHook postBuild
|
|
'';
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
dune runtest ''${enableParallelBuilding:+-j $NIX_BUILD_CORES}
|
|
runHook postCheck
|
|
'';
|
|
installPhase = ''
|
|
runHook preInstall
|
|
dune install --prefix $out --libdir $OCAMLFIND_DESTDIR
|
|
runHook postInstall
|
|
'';
|
|
postInstall = ''
|
|
wrapProgram $out/bin/sail --set SAIL_DIR $out/share/sail
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/rems-project/sail";
|
|
description = "Language for describing the instruction-set architecture (ISA) semantics of processors";
|
|
maintainers = with maintainers; [ genericnerdyusername ];
|
|
license = licenses.bsd2;
|
|
};
|
|
}
|