debug; more dependencies in Nix
This commit is contained in:
parent
969d5bb4a0
commit
afdb8987d4
|
@ -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 {
|
||||
|
|
2
test.py
2
test.py
|
@ -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)
|
Loading…
Reference in New Issue
Block a user