mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-12 16:10:03 +01:00
9 lines
143 B
Nix
9 lines
143 B
Nix
|
|
let
|
||
|
|
pkgs = import <nixpkgs> {};
|
||
|
|
in {
|
||
|
|
test = pkgs.writeScript "test" ''
|
||
|
|
#!/bin/sh
|
||
|
|
nix-build "${toString ./tests/test.nix}";
|
||
|
|
'';
|
||
|
|
}
|