terminal user interface to jujutsu. Focused on speed and clarity
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

switch to pkgsStatic

+2 -29
-27
.github/workflows/build-nix.yaml
··· 1 - name: nix 2 - 3 - on: 4 - push: 5 - branches: 6 - - main 7 - pull_request: 8 - 9 - permissions: read-all 10 - 11 - jobs: 12 - nix: 13 - strategy: 14 - fail-fast: false 15 - matrix: 16 - os: [ubuntu-latest, macos-14] 17 - runs-on: ${{ matrix.os }} 18 - timeout-minutes: 15 # NOTE (aseipp): keep in-sync with the build.yml timeout limit 19 - 20 - name: flake build 21 - steps: 22 - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b 23 - with: 24 - fetch-depth: 0 25 - - uses: DeterminateSystems/nix-installer-action@8cdf194da984e4f12b2f8c36d1fa107c1dd67f5c 26 - - uses: DeterminateSystems/magic-nix-cache-action@87e8236f46702ab0ce5a058b605a173ec88d618e 27 - - run: nix build .#static
+2 -2
flake.nix
··· 99 99 packages = { 100 100 default = (jj_tui pkgs 101 101 ocamlPackages "release").jj_tui; # Development environment output 102 - static = (jj_tui pkgs.pkgsMusl 103 - pkgs.pkgsMusl.ocamlPackages "static").jj_tui; # Development environment output 102 + static = (jj_tui pkgs.pkgsStatic 103 + pkgs.pkgsStatic.ocamlPackages "static").jj_tui; # Development environment output 104 104 }; 105 105 devShells = { 106 106 default = mkShell.override { stdenv = pkgs.gccStdenv; } {