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