A beginning is a very delicate time

This commit is contained in:
2021-10-17 22:32:05 -07:00
commit 0101f0c6da
6 changed files with 297 additions and 0 deletions

14
shell.nix Normal file
View 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 ];
}