-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
basil: add shell and docker for tools
at the moment, this only contains the tools accompanying BASIL. it is simple to extend to a BASIL dev environment and then to BASIL itself.
- Loading branch information
1 parent
ea48514
commit 64b8305
Showing
3 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ mkShell | ||
, gcc-aarch64 | ||
, clang-aarch64 | ||
, asli | ||
, ddisasm | ||
, gtirb-pprinter | ||
, gtirb-semantics | ||
}: | ||
let | ||
packages = [ | ||
gcc-aarch64 | ||
clang-aarch64 | ||
asli | ||
ddisasm | ||
gtirb-pprinter | ||
gtirb-semantics | ||
]; | ||
in mkShell { | ||
inherit packages; | ||
inputsFrom = [ ]; | ||
shellHook = '' | ||
echo | ||
echo == pac-nix/BASIL tool shell == | ||
echo | ||
echo 'with packages installed:' | ||
printf ' - %s\n' ${toString (map (x: x.name) packages)} | ||
echo | ||
''; | ||
meta = { | ||
description = "shell containing tools used in the BASIL pipeline"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters