disko/ci.nix

9 lines
134 B
Nix
Raw Normal View History

2018-09-12 20:06:10 +00:00
let
pkgs = import <nixpkgs> {};
in {
test = pkgs.writeScript "test" ''
#!/bin/sh
2022-08-25 13:16:26 +00:00
nix-build "${toString ./tests}";
2018-09-12 20:06:10 +00:00
'';
}