summaryrefslogtreecommitdiffstats
path: root/ci.nix
blob: 3c49ab147c6375861d3c0282d8b8a3306c57fb2b (plain)
1
2
3
4
5
6
7
8
let
  pkgs = import <nixpkgs> {};
in {
  test = pkgs.writeScript "test" ''
    #!/bin/sh
    nix-build "${toString ./tests}";
  '';
}