about summary refs log tree commit diff homepage
path: root/shell.nix
blob: 9d361a5ff501159a59fb8ce1ffe4170d02a79543 (plain) (blame)
1
2
3
4
5
6
7
8
with import <nixpkgs> {};
let symbdiff = callPackage ./tools/symbdiff { };
in mkShell {
  packages = [ clang symbdiff ];
  shellHook = ''
    alias klang='clang -emit-llvm -c -g -O0 -Xclang -disable-O0-optnone'
 '';
}