mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
8 lines
134 B
Nix
8 lines
134 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in {
|
|
test = pkgs.writeScript "test" ''
|
|
#!/bin/sh
|
|
nix-build "${toString ./tests}";
|
|
'';
|
|
}
|