update pakcage

This commit is contained in:
Sense T 2023-12-29 14:29:29 +08:00
parent acb28484e1
commit 4f5cd35e2c
3 changed files with 6 additions and 4 deletions

View File

@ -10,4 +10,4 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: cachix/install-nix-action@v12 - uses: cachix/install-nix-action@v12
- name: Building package - name: Building package
run: sudo apt install -y pkg-config && nix-build . -A defaultPackage.x86_64-linux run: nix-build . -A defaultPackage.x86_64-linux

View File

@ -40,8 +40,6 @@ jobs:
- name: Install cosign - name: Install cosign
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@7e0881f8fe90b25e305bbf0309761e9314607e25 uses: sigstore/cosign-installer@7e0881f8fe90b25e305bbf0309761e9314607e25
with:
cosign-release: 'v1.9.0'
# Workaround: https://github.com/docker/build-push-action/issues/461 # Workaround: https://github.com/docker/build-push-action/issues/461

View File

@ -1,7 +1,11 @@
(import ( {pkgs}: (import (
fetchTarball { fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz"; url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2"; } sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2"; }
) { ) {
src = ./.; src = ./.;
buildInputs = with pkgs;[
pkg-config
openssl
];
}).defaultNix }).defaultNix