Compare commits

..

1 commit

Author SHA1 Message Date
uku
cadb493c02
feat: add build workflow
Some checks failed
Build packages / Build derivations (push) Failing after 6m27s
2024-09-10 16:32:44 +02:00
2 changed files with 0 additions and 13 deletions

View file

@ -15,19 +15,12 @@ jobs:
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v14
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
name: uku3lig
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Build
run: |
nix run \
github:Mic92/nix-fast-build -- \
--no-nom \
--skip-cached \
--systems 'x86_64-linux'
--option accept-flake-config true \
--option allow-import-from-derivation false \
--flake '.#packages'

View file

@ -1,5 +1,4 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
@ -26,9 +25,4 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [cmake ninja wrapQtAppsHook];
buildInputs = [qtbase qtwayland kcoreaddons kwidgetsaddons kconfig];
meta = {
mainProgram = "koi";
platforms = lib.platforms.linux;
};
})