disko/ci.nix

9 lines
143 B
Nix
Raw Normal View History

2018-09-12 22:06:10 +02:00
let
pkgs = import <nixpkgs> {};
in {
test = pkgs.writeScript "test" ''
#!/bin/sh
nix-build "${toString ./tests/test.nix}";
'';
}