Commit Graph
745568 Commits
Author SHA1 Message Date
EmilyandGitHub ce2f3c39ad ungoogled-chromium: 132.0.6834.110-1 -> 132.0.6834.159-1 (#377928) 2025-01-30 10:50:31 +01:00
Christina SørensenandGitHub 457b04c90f rqbit: 7.0.1 -> 8.0.0 (#372777) 2025-01-30 10:49:09 +01:00
Gaétan LepageandGitHub 2202a475bc netbird-ui: 0.35.2 -> 0.36.5 (#377823) 2025-01-30 10:47:16 +01:00
GliczyandMasum Reza 8bd4f355e1 aquamarine: 0.7.1 -> 0.7.2 2025-01-30 15:14:27 +05:30
GliczyandMasum Reza cbce12747f hyprland: 0.47.0 -> 0.47.1 2025-01-30 15:14:27 +05:30
Gaétan LepageandGitHub b0f1ad01bb uv: 0.5.24 -> 0.5.25 (#377793) 2025-01-30 10:41:06 +01:00
Alyssa Ross fe3a38492f epick: update source commit and hash
No activity upstream for three years, so not much point asking
upstream about it.  Diff seems to be to things that we don't care
about:

diff --git 1/nix/store/rlnw9ja3fs6kk52gwxxl80m75m0091dm-source/.github/workflows/release.yml 2/nix/store/n2wa70xwa4varqwj7xzavbl88cba5yi6-source/.github/workflows/release.yml
index c08d9a4..af96564 100644
--- 1/nix/store/rlnw9ja3fs6kk52gwxxl80m75m0091dm-source/.github/workflows/release.yml
+++ 2/nix/store/n2wa70xwa4varqwj7xzavbl88cba5yi6-source/.github/workflows/release.yml
@@ -1,5 +1,3 @@
-#name: release
-
 on:
   push:
     branches:
@@ -40,7 +38,6 @@ jobs:
     runs-on: ${{ matrix.os }}
     strategy:
       matrix:
-        build: [linux, windows-msvc]
         include:
         - build: linux
           os: ubuntu-latest
@@ -56,14 +53,18 @@ jobs:
       - name: Set up Rust
         uses: hecrj/setup-rust-action@v1
       - uses: actions/checkout@v3
-      - name: Set version
+      - name: Set version Unix
+        run: echo "EPICK_VERSION=$GITHUB_REF_NAME" >> $GITHUB_ENV
         if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
-        run: echo "EPICK_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
-      - name: Set version
+      - name: Set archive name Unix
+        run: echo "EPICK_ARCHIVE=epick-${{ env.EPICK_VERSION }}-${{ matrix.target }}" >> $GITHUB_ENV
+        if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
+      - name: Set version Windows
+        run: echo "EPICK_VERSION=$env:GITHUB_REF_NAME" >> $env:GITHUB_ENV
+        if: matrix.os == 'windows-latest'
+      - name: Set archive name Windows
+        run: echo "EPICK_ARCHIVE=epick-$env:EPICK_VERSION-${{ matrix.target }}" >> $env:GITHUB_ENV
         if: matrix.os == 'windows-latest'
-        run: echo "EPICK_VERSION=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
-      - name: Set archive name
-        run: echo "EPICK_ARCHIVE=epick-${{ env.EPICK_VERSION}}-${{ matrix.target}}" >> $GITHUB_ENV
       - name: Install dependencies
         if: matrix.os == 'ubuntu-latest'
         run: sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev
@@ -125,11 +126,16 @@ jobs:
       - name: Install pkger
         if: matrix.os == 'ubuntu-latest'
         run: |
-          curl -LO https://github.com/vv9k/pkger/releases/download/0.8.0/pkger-0.8.0-0.amd64.deb
-          sudo dpkg -i pkger-0.8.0-0.amd64.deb
+          curl -LO https://github.com/vv9k/pkger/releases/download/0.10.0/pkger-0.10.0-0.amd64.deb
+          sudo dpkg -i pkger-0.10.0-0.amd64.deb
           /usr/bin/pkger init
           mkdir -p $HOME/.config/pkger/recipes/epick
           cp pkger.yml $HOME/.config/pkger/recipes/epick/recipe.yaml
+      - name: Copy prebuilt archive
+        if: matrix.os == 'ubuntu-latest'
+        run: |
+          cp ${{ env.EPICK_ARCHIVE }}.tar.gz $HOME/.config/pkger/recipes/epick/
+          tar zcvf $HOME/.config/pkger/recipes/epick/assets.tar.gz assets
       - name: Build RPM and DEB
         if: matrix.os == 'ubuntu-latest'
         run: /usr/bin/pkger build -s deb -s rpm -- epick
diff --git 1/nix/store/rlnw9ja3fs6kk52gwxxl80m75m0091dm-source/pkger.yml 2/nix/store/n2wa70xwa4varqwj7xzavbl88cba5yi6-source/pkger.yml
index 83d4d53..4fdf5e6 100644
--- 1/nix/store/rlnw9ja3fs6kk52gwxxl80m75m0091dm-source/pkger.yml
+++ 2/nix/store/n2wa70xwa4varqwj7xzavbl88cba5yi6-source/pkger.yml
@@ -5,23 +5,12 @@ metadata:
   version: 0.9.0
   description: Color picker for creating harmonic color palettes
   license: GPL-3.0
-  source: https://github.com/vv9k/$RECIPE/archive/refs/tags/$RECIPE_VERSION.tar.gz
-  build_depends:
-    pkger-deb: ['libxcb-render0-dev', 'libxcb-shape0-dev', 'libxcb-xfixes0-dev', 'libxkbcommon-dev']
-    pkger-rpm: ['libxcb-devel', 'libxkbcommon-devel', 'libxcb']
-    all:
-      - curl
-      - gcc
-      - pkg-config
-      - python3
-configure:
-  steps:
-    - cmd: curl -o /tmp/install_rust.sh https://sh.rustup.rs
-    - cmd: sh /tmp/install_rust.sh -y --default-toolchain stable
+  all_images: true
+  source:
+    - epick-0.9.0-x86_64-unknown-linux.tar.gz
+    - assets.tar.gz
 build:
-  working_dir: $PKGER_BLD_DIR/${RECIPE}-$RECIPE_VERSION
-  steps:
-    - cmd: $HOME/.cargo/bin/cargo build --release
+  steps: []
 install:
   steps:
     - cmd: >-
@@ -32,9 +21,9 @@ install:
           usr/share/icons/hicolor/48x48/apps \
           usr/share/icons/hicolor/scalable/apps \
           usr/share/applications
-    - cmd: install -m755 $PKGER_BLD_DIR/$RECIPE-$RECIPE_VERSION/target/release/$RECIPE usr/bin/
-    - cmd: install -m644 $PKGER_BLD_DIR/$RECIPE-$RECIPE_VERSION/LICENSE usr/share/licenses/$RECIPE/LICENSE
-    - cmd: install -m644 $PKGER_BLD_DIR/$RECIPE-$RECIPE_VERSION/README.md usr/share/doc/$RECIPE/README.md
-    - cmd: install -m644 $PKGER_BLD_DIR/$RECIPE-$RECIPE_VERSION/assets/icon.png usr/share/icons/hicolor/48x48/apps/$RECIPE.png
-    - cmd: install -m644 $PKGER_BLD_DIR/$RECIPE-$RECIPE_VERSION/assets/icon.svg usr/share/icons/hicolor/scalable/apps/$RECIPE.svg
-    - cmd: install -m644 $PKGER_BLD_DIR/$RECIPE-$RECIPE_VERSION/assets/$RECIPE.desktop usr/share/applications/$RECIPE.desktop
+    - cmd: install -m755 $PKGER_BLD_DIR/$RECIPE/$RECIPE usr/bin/
+    - cmd: install -m644 $PKGER_BLD_DIR/$RECIPE/LICENSE usr/share/licenses/$RECIPE/LICENSE
+    - cmd: install -m644 $PKGER_BLD_DIR/$RECIPE/README.md usr/share/doc/$RECIPE/README.md
+    - cmd: install -m644 $PKGER_BLD_DIR/assets/icon.png usr/share/icons/hicolor/48x48/apps/$RECIPE.png
+    - cmd: install -m644 $PKGER_BLD_DIR/assets/icon.svg usr/share/icons/hicolor/scalable/apps/$RECIPE.svg
+    - cmd: install -m644 $PKGER_BLD_DIR/assets/$RECIPE.desktop usr/share/applications/$RECIPE.desktop
2025-01-30 10:37:23 +01:00
Arne KellerandGitHub 90495272fa parseable: init at 1.7.1 (#372346) 2025-01-30 10:29:57 +01:00
Alyssa Ross e18b76d2e0 wasm-bindgen-cli_*: fetchCargoTarball -> fetchCargoVendor
Cargo 1.84.0 seems to have changed the output format of cargo vendor
again, once again invalidating fetchCargoTarball FOD hashes.  It's
time to fix this once and for all, switching across the board to
fetchCargoVendor, which is not dependent on cargo vendor's output
format.
2025-01-30 10:26:44 +01:00
Alyssa Ross bca1dde2b4 buildWasmBindgenCli,wasm-bindgen-cli-*: init
Exposing an overridable cargoHash parameter is problematic because it
will produce silently broken FODs if we change the hashing scheme,
which we are currently doing across the tree because Cargo 1.84.0 has
changed the output of fetchCargoTarball, meaning all hashes have been
invalidated.  To avoid this happening in future, we are changing to
the fetchCargoVendor mechanism, which does not depend on
implementation details of Cargo.

The future-proof way to override a package with Cargo dependencies is
to pass a cargoDeps object.  This is more verbose, and requires the
caller to have access to the src object for the package.  To
compensate for this, I've introduced a buildWasmBindgenCli function
that is nicer to use than wasm-bindgen-cli.overrideAttrs, and I've
also introduced versioned attributes for wasm-bindgen-cli versions
currently in use in Nixpkgs, so that each package that wants to use a
particular version doesn't have to duplicate the src and cargoDeps
definitions for that version.

The unversioned "wasm-bindgen-cli" attribute is demoted to an alias,
with a view to its eventual removal.
2025-01-30 10:26:44 +01:00
Alyssa Ross b55dd979b8 fetchCrate: expose pname and version in passthru 2025-01-30 10:26:44 +01:00
06de2be987 trealla: 2.63.15 -> 2.63.33 (#377923)
Co-authored-by: AndersonTorres <torres.anderson.85@protonmail.com>
2025-01-30 09:21:24 +00:00
Gaétan LepageandGitHub fa25c5e698 jellyseerr: 2.2.3 -> 2.3.0 (#375492) 2025-01-30 10:20:54 +01:00
networkException 82fb28b36d ungoogled-chromium: 132.0.6834.110-1 -> 132.0.6834.159-1
https://chromereleases.googleblog.com/2025/01/stable-channel-update-for-desktop_28.html

This update includes 2 security fixes.

CVEs:
CVE-2025-0762
2025-01-30 10:06:22 +01:00
Arne KellerandGitHub 29b3b6408d conjure-tor: init at 0-unstable-2024-11-11 (#367417) 2025-01-30 10:05:17 +01:00
StigandGitHub 5152209031 yamlscript: 0.1.88 -> 0.1.89 (#377882) 2025-01-30 09:57:12 +01:00
Damien CassouandGitHub 6c0aca777c crowdin-cli: 4.5.1 -> 4.5.2 (#377905) 2025-01-30 09:51:31 +01:00
R. Ryantm 73932a6b80 trealla: 2.63.15 -> 2.63.33 2025-01-30 08:36:59 +00:00
Mutsuha AsadaandVincent Laporte bb136ef6dc liquidsoap: 2.2.5 → 2.3.0
ocamlPackages.ffmpeg: 1.1.11 -> 1.2.1
Changelog: https://github.com/savonet/ocaml-ffmpeg/releases/tag/v1.2.1
Diff: https://github.com/savonet/ocaml-ffmpeg/compare/v1.1.11...v1.2.1
2025-01-30 09:33:36 +01:00
Vincent LaporteandVincent Laporte ea2225cd69 ocamlPackages.mem_usage: init at 0.1.2 2025-01-30 09:33:36 +01:00
Leona MaroniandGitHub 1973ab5d4e Bump/jetbrains 2024.3.2.2 (#377800) 2025-01-30 09:29:40 +01:00
Doron BeharandGitHub 4b9058f99a texlab: 5.22.0 -> 5.22.1 (#377893) 2025-01-30 10:24:02 +02:00
Pavol RusnakandGitHub 0eed8b11ba python312Packages.fastecdsa: 3.0.0 -> 3.0.1 (#377838) 2025-01-30 09:20:40 +01:00
Arne KellerandGitHub d696d0a91f mysql80: 8.0.40 -> 8.0.41, mysql84: 8.4.3 -> 8.4.4 (#376225) 2025-01-30 09:04:21 +01:00
Arne KellerandGitHub 9d117297f4 mumble: 1.5.634 -> 1.5.735 (#363376) 2025-01-30 09:03:54 +01:00
Arne KellerandGitHub c25903f220 python3Packages.manga-ocr: 0.1.13 -> 0.1.14 (#370137) 2025-01-30 08:45:16 +01:00
Arne KellerandGitHub b1206c1f68 ipbus-uhal: init at 2.8.16 (#357608) 2025-01-30 08:36:37 +01:00
Arne KellerandGitHub 54c4c62d22 lsh: init at 1.3.3 (#372168) 2025-01-30 08:35:04 +01:00
Arne KellerandGitHub 172bfc4122 dinish: init at 4.005 (#371842) 2025-01-30 08:29:27 +01:00
034e34cea9 containerlab: 0.62.0 -> 0.62.2 (#377907)
Co-authored-by: aaronjheng <aaronjheng@users.noreply.github.com>
2025-01-30 07:22:08 +00:00
Sefa EyeogluandGitHub f007b0b65c nixos/rtl-sdr: modernize (#377612) 2025-01-30 08:14:06 +01:00
Arne KellerandGitHub f861b6efbc keylight-cli: init at 1.0.0 (#371935) 2025-01-30 08:02:44 +01:00
R. Ryantm a8aadfbb33 containerlab: 0.62.0 -> 0.62.2 2025-01-30 06:57:55 +00:00
Arne KellerandGitHub edab378273 xephem: init at 4.2.0 (#294622) 2025-01-30 07:55:37 +01:00
R. Ryantm 121bb767a8 crowdin-cli: 4.5.1 -> 4.5.2 2025-01-30 06:53:56 +00:00
Kira Bruneau 10f92a83b3 texlab: 5.22.0 -> 5.22.1 2025-01-30 00:14:05 -05:00
bb2b0c599b openlinkhub: 0.4.8 -> 0.5.0 (#377399)
Co-authored-by: Bot-wxt1221 <3264117476@qq.com>
2025-01-30 03:19:15 +00:00
R. Ryantm fbc3a1036d yamlscript: 0.1.88 -> 0.1.89 2025-01-30 03:19:13 +00:00
Pol DellaieraandGitHub 83defbadc8 multiqc: init at 1.26 (#372510) 2025-01-30 03:51:08 +01:00
YtandGitHub 1de313a304 tailwindcss-language-server: 0.0.27 -> 0.14.1 (#377703) 2025-01-29 21:24:52 -05:00
dzmitry-lahoda 610dadfba8 lsh: init at 1.3.3 2025-01-30 01:57:25 +00:00
dzmitry-lahoda 783dd575e7 maintainers: add dzmitry-lahoda 2025-01-30 01:56:51 +00:00
AleksanaandGitHub b1ae34c536 mcpelauncher-client: fix hard-coded paths (#377734) 2025-01-30 09:56:46 +08:00
c425d0663c mmdbctl: 1.4.6 -> 1.4.7 (#377864)
Co-authored-by: Moraxyc <Moraxyc@users.noreply.github.com>
2025-01-30 01:53:53 +00:00
R. Ryantm bd6da69f84 mmdbctl: 1.4.6 -> 1.4.7 2025-01-30 01:34:42 +00:00
Nick CaoandGitHub c8fadee69d sequoia-chameleon-gnupg: 0.11.2 -> 0.12.0 (#377853) 2025-01-29 20:00:09 -05:00
Adam C. StephensandGitHub 5924fd80be bind: 9.18.28 -> 9.18.33 (#377848) 2025-01-29 19:54:23 -05:00
OTABI TomoyaandGitHub c25b107bea moralerspace: init at 1.1.0 (#376440) 2025-01-30 09:43:17 +09:00
R. Ryantm 3b951c1269 sequoia-chameleon-gnupg: 0.11.2 -> 0.12.0 2025-01-30 00:40:45 +00:00
OTABI TomoyaandGitHub 2c5477d918 python312Packages.llm: 0.19.1 -> 0.20 (#376105) 2025-01-30 09:37:42 +09:00