add ci.nix

This commit is contained in:
lassulus 2018-09-12 22:06:10 +02:00
parent 9c9b62e15e
commit 2b6391f1c3

8
ci.nix Normal file
View file

@ -0,0 +1,8 @@
let
pkgs = import <nixpkgs> {};
in {
test = pkgs.writeScript "test" ''
#!/bin/sh
nix-build "${toString ./tests/test.nix}";
'';
}