From f7499c55e608c19962678421b1dfacc0ffb90c11 Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Sun, 21 Feb 2021 21:06:56 +0000 Subject: [PATCH] Use only Nix-installed tools --- .github/workflows/ci.yml | 2 +- flake.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 162c5de..a219caf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Run tests run: PATH="$PWD/result/bin:$PATH" ./test.py - name: Run tests - run: PATH="$PWD/result/bin:$PATH" ./test.py + run: PATH="$PWD/result/bin" ./test.py - uses: actions/upload-artifact@v2 with: name: debug.tar.gz diff --git a/flake.nix b/flake.nix index 9689692..14bb32f 100644 --- a/flake.nix +++ b/flake.nix @@ -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 python3 sqlite gawk ]; in + let mypackages = with nixpkgs; [ coreutils python3 sqlite gawk git ]; in with import nixpkgs-git { system = "x86_64-linux"; }; symlinkJoin {