Skip to content

Commit

Permalink
Set sha for nixpkgs, more test output
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaMahany committed Jan 5, 2024
1 parent 7d1b1cc commit 6c196ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: NIXPKGS_ALLOW_UNFREE=1 nix build --impure

- name: check flake (runs tests)
run: NIXPKGS_ALLOW_UNFREE=1 nix flake check --impure
run: NIXPKGS_ALLOW_UNFREE=1 nix flake check --impure --verbose --debug

- name: show flake output attributes
run: nix flake show
Expand Down
5 changes: 4 additions & 1 deletion tests/kolide-launcher.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{ flake }:

let
nixpkgs = builtins.fetchTarball "https://github.com/nixOS/nixpkgs/archive/23.05.tar.gz";
nixpkgs = builtins.fetchTarball {
url = "https://github.com/nixOS/nixpkgs/archive/23.05.tar.gz";
sha256 = "sha256:10wn0l08j9lgqcw8177nh2ljrnxdrpri7bp0g7nvrsn9rkawvlbf";
};
pkgs = import nixpkgs { config = {}; overlays = []; };
in

Expand Down

0 comments on commit 6c196ce

Please sign in to comment.