Compare commits

...

6 Commits

Author SHA1 Message Date
FliegendeWurst
35c961fd55 ci: enable caching 2023-09-04 22:54:48 +02:00
Arne Keller
189bc27779
Merge pull request #7 from FliegendeWurst/dependabot/github_actions/cachix/install-nix-action-23
Bump cachix/install-nix-action from 21 to 23
2023-09-04 22:54:04 +02:00
dependabot[bot]
57a567c7d8
Bump cachix/install-nix-action from 21 to 23
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 21 to 23.
- [Release notes](https://github.com/cachix/install-nix-action/releases)
- [Commits](https://github.com/cachix/install-nix-action/compare/v21...v23)

---
updated-dependencies:
- dependency-name: cachix/install-nix-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-04 20:51:00 +00:00
FliegendeWurst
0ab8412646 raspi-oled: disable temporarily 2023-09-04 22:50:41 +02:00
Arne Keller
9972cdcf37
Merge pull request #6 from FliegendeWurst/dependabot/github_actions/actions/checkout-4
Bump actions/checkout from 3 to 4
2023-09-04 22:49:31 +02:00
dependabot[bot]
382cf2863f
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-04 18:18:09 +00:00
2 changed files with 6 additions and 4 deletions

View File

@ -39,9 +39,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install nix
uses: cachix/install-nix-action@v21
uses: DeterminateSystems/nix-installer-action@main
with:
nix_path: "${{ matrix.nixPath }}"
# nix 2.6 breaks restrict-eval, when using the NIX_PATH
@ -49,6 +49,7 @@ jobs:
extra_nix_config: |
experimental-features = nix-command flakes
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Show nixpkgs version
run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
#- name: Setup cachix

View File

@ -18,8 +18,9 @@
freqtop = pkgs.callPackage ./pkgs/freqtop { };
map = pkgs.callPackage ./pkgs/map { };
q = pkgs.callPackage ./pkgs/q { };
raspi-oled = pkgs.callPackage ./pkgs/raspi-oled { };
raspi-oled-cross = pkgs.pkgsCross.muslpi.callPackage ./pkgs/raspi-oled { };
# TODO: fix dependency specification
#raspi-oled = pkgs.callPackage ./pkgs/raspi-oled { };
#raspi-oled-cross = pkgs.pkgsCross.muslpi.callPackage ./pkgs/raspi-oled { };
ripgrep-all = pkgs.callPackage ./pkgs/ripgrep-all {
inherit (pkgs.darwin.apple_sdk.frameworks) Security;
};