This commit is contained in:
Cadey Ratio 2020-03-27 19:50:48 -04:00
parent 90d302ee70
commit c84e974bcc
3 changed files with 11 additions and 0 deletions

8
.drone.yml Normal file
View File

@ -0,0 +1,8 @@
kind: pipeline
name: nix builds
steps:
- name: docker image
image: lnl7/nix:2020-03-07
commands:
- nix-build docker.nix

1
.envrc Normal file
View File

@ -0,0 +1 @@
eval "$(lorri direnv)"

2
shell.nix Normal file
View File

@ -0,0 +1,2 @@
let pkgs = import <nixpkgs> { };
in pkgs.mkShell { buildInputs = with pkgs; [ go vgo2nix ]; }