aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/Dockerfile
blob: 3fa39a3d35087f1426da51fbc92ac6652ed1aeac (plain)
1
2
3
4
5
6
7
8
9
10
11
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 cabal-install

COPY . /verismith

WORKDIR /verismith
RUN nix-shell --run "true"