A beginning is a very delicate time
This commit is contained in:
14
shell.nix
Normal file
14
shell.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ pkgs ? import (builtins.fetchTarball {
|
||||
name = "nixpkgs-unstable";
|
||||
url = https://github.com/NixOS/nixpkgs/archive/8f80568885d1b37cccbede85143c00711b19390c.tar.gz;
|
||||
sha256 = "080cbcj4b08aa02qybf10pbf54cdvaxvgddx1w5gzrga1nacyilh";
|
||||
}) {}
|
||||
}:
|
||||
|
||||
let
|
||||
klee = pkgs.callPackage ./klee.nix {};
|
||||
in
|
||||
pkgs.stdenv.mkDerivation {
|
||||
name = "ap-cs-klee";
|
||||
buildInputs = with pkgs; [ klee clang_9 gnumake ];
|
||||
}
|
||||
Reference in New Issue
Block a user