debug; more dependencies in Nix

This commit is contained in:
Suzanne Soy 2021-02-21 20:28:58 +00:00
parent 969d5bb4a0
commit afdb8987d4
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
let system = "x86_64-linux"; in
let nixpkgs = import nixpkgs-git { config = { allowUnfree = true;}; system = system; }; in
let mypackages = with nixpkgs; [ coreutils ]; in
let mypackages = with nixpkgs; [ coreutils python3 ]; in
with import nixpkgs-git { system = "x86_64-linux"; };
symlinkJoin {

View File

@ -34,5 +34,5 @@ with tempfile.TemporaryDirectory(prefix="test", dir="/tmp") as tempdir:
print("test passed")
else:
print("TEST FAILED: got hash " + repr(h))
os.system("tar -Jcf- . | xxd", cwd=tempdir)
print(subprocess.check_output("tar -Jcf- . | xxd", cwd=tempdir, shell=True))
exit(1)