Skip to content
Snippets Groups Projects
Commit 392a7645 authored by Hans-Jörg's avatar Hans-Jörg Committed by Hans-Jörg Schurr
Browse files

Add shell.nix file to aid development

parent 4a4dd370
No related branches found
No related tags found
1 merge request!2Backport specification from my PhD thesis
This commit is part of merge request !2. Comments created here will be created in the context of that merge request.
/*
* This file is a nix expression which can be used to get an isolated
* development environemt.
*
* When the nix package manager is installed run
* > nix-shell ./scripts/dev-env.nix
* to get a shell with the dependenies of veriT present. This was only tested
* on NixOS, but should work on other platforms which are supported by the Nix
* packagemanger (such as MacOS X) too.
*/
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenvNoCC.mkDerivation {
name = "alethe";
hardeningDisable = [ "all" ];
buildInputs = with pkgs; [
gnumake
entr
python39Packages.pygments
];
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment