www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit f7499c55e608c19962678421b1dfacc0ffb90c11
parent 7637d7e932d45d19d9cd5606ce517ed5b3080829
Author: Suzanne Soy <git@suzanne.soy>
Date:   Sun, 21 Feb 2021 21:06:56 +0000

Use only Nix-installed tools

Diffstat:
M.github/workflows/ci.yml | 2+-
Mflake.nix | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 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 @@ -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 {