aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/docker/Dockerfile
blob: 9612938037810f1aba4af1097e2973db6dee54a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM nixos/nix

RUN nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs
RUN nix-channel --update

RUN nix-env -i yosys git tmux vim gcc iverilog

RUN git clone --recursive https://github.com/ymherklotz/vericert

WORKDIR /vericert
RUN git checkout -b oopsla21
RUN nix-shell --run "make -j7"
RUN nix-shell --run "make install"