Commit Graph

153 Commits

Author SHA1 Message Date
R. Ryantm
5d84c021df radare2: 6.1.8 -> 6.2.0 2026-08-13 08:22:31 +00:00
2kybe3
7747e77a6f treewide: follow some GitHub redirects for fetchFromGitHub
generated using https://git.kybe.xyz/2kybe3/nixpkgs-github-redirect

continuation of: #539298
2026-08-01 21:25:09 +02:00
Gerhard Schwanzer
94a5ed6266 radare2: 6.1.4 -> 6.1.8
https://github.com/radareorg/radare2/releases/tag/6.1.8

Fixes #538888
Fixes #539166

Assisted-by: pi coding agent / Mika (OpenAI gpt-5.6-sol)
2026-07-17 02:56:28 +02:00
Azat Bahawi
08cfca36f4 radare2: 6.1.2 -> 6.1.4 , add updateScript, versionCheckHook (#511014) 2026-04-24 23:48:52 +00:00
makefu
bbe17f8b75 iaito: add update script, run at the end of radare2 update script
iaito (the front-end for radare2) should follow radare2 base package to avoid incompatibilities
the radare2 update script tries to bump iaito but will continue if unsuccessful as
the two projects do share the same version but not the same release date
2026-04-21 00:49:55 +02:00
makefu
16878edb83 radare2: 6.1.2 -> 6.1.4
fixes #510500
2026-04-17 23:25:35 +02:00
makefu
57d2636e0d radare2: add versionCheckHook
mainProgram is r2, is used by the version check
2026-04-17 23:24:48 +02:00
makefu
67bd46c59e radare2: add update script 2026-04-17 23:23:09 +02:00
nixpkgs-ci[bot]
d13eae4110 Merge staging-next into staging 2026-03-20 00:24:57 +00:00
Harinn
7ef52fcfab radare2: 6.1.0 -> 6.1.2 2026-03-19 20:58:58 +07:00
nixpkgs-ci[bot]
8f37fcd1d2 Merge staging-next into staging 2026-03-17 12:17:26 +00:00
azahi
ecb2167116 radare2: 6.0.7 -> 6.1.0 2026-03-15 23:33:14 +03:00
quantenzitrone
d077a4dc0a xxhash: rename from xxHash
rename to lowercase to fit package naming conventions
2026-03-06 20:15:57 +01:00
c6rg0
66a19f3c45 radare2: 6.0.4 -> 6.0.7 2026-01-01 12:21:25 +00:00
Fabian Affolter
fed3d7758a radare2: 6.0.2 -> 6.0.4
Diff: https://github.com/radare/radare2/compare/6.0.2...6.0.4

Changelog: https://github.com/radareorg/radare2/releases/tag/6.0.4
2025-10-08 21:47:32 +02:00
azahi
776601b613 radare2: 5.9.8 -> 6.0.2 2025-08-15 21:11:54 +03:00
Wolfgang Walther
5a0711127c treewide: run nixfmt 1.0.0 2025-07-24 13:55:40 +02:00
Thomas Gerbet
34941b1eff radare2: 5.9.6 -> 5.9.8
Fixes CVE-2024-11858.

Changes:
https://github.com/radareorg/radare2/releases/tag/5.9.8
2025-01-04 11:37:20 +01:00
Peder Bergebakken Sundt
0cd04d3036 treewide: migrate fetchgit rev = "refs/tags/..." to tag 2025-01-04 00:19:17 +01:00
Reno Dakota
35276f7b35 radare2: use system zlib; fix darwin 2024-12-22 02:26:48 -08:00
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
Muhammad Falak R Wani
4d8c2734f8 radare2: 5.9.2 -> 5.9.6
Diff: https://github.com/radare/radare2/compare/refs/tags/5.9.2...5.9.6
Changelog: https://github.com/radareorg/radare2/releases/tag/5.9.6
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
2024-10-15 08:57:44 +05:30
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Azat Bahawi
c0381f6b72 radare2: 5.9.0 -> 5.9.2 2024-06-07 23:13:50 +03:00
Sigmanificient
203a48ad35 pkgs/development: remove unused fetchpatch arguments 2024-05-24 02:53:57 +02:00
7c6f434c
e2ae00c7d5 Update pkgs/development/tools/analysis/radare2/default.nix
Co-authored-by: Mario Rodas <marsam@users.noreply.github.com>
2024-04-07 01:38:32 +00:00
Michael Raskin
3dc81e7578 radare2: fix on Darwin after update in #301660 (thanks @reckenrode) 2024-04-06 16:12:14 +02:00
Thomas Gerbet
bbcf3984a4 radare2: 5.8.8 -> 5.9.0
Fixes CVE-2023-4322, CVE-2023-5686, CVE-2023-46569, CVE-2023-46570 and CVE-2023-47016.

Changes:
https://github.com/radareorg/radare2/releases/tag/5.9.0
2024-04-04 23:42:32 +02:00
Jörg Thalheim
a104da6839 radare2: 5.8.6 -> 5.8.8 2023-06-10 17:24:08 +02:00
Azat Bahawi
7aef072b63 radare2: 5.8.4 -> 5.8.6 2023-05-09 17:13:20 +03:00
Fabian Affolter
73cc4c23e0 radare2: add changelog to meta 2023-03-15 11:06:28 +01:00
Jörg Thalheim
f8df1cd607 radare2: 5.8.2 -> 5.8.4
Diff: https://github.com/radare/radare2/compare/5.8.2...5.8.4
2023-03-15 09:23:37 +01:00
Thomas Gerbet
bd113dca77 radare2: 5.8.0 -> 5.8.2
https://github.com/radareorg/radare2/releases/tag/5.8.2
2023-01-24 23:01:04 +01:00
Martin Weinelt
5a61f34f2e radare2: Fix ANSI Escape Sequence Injection vulns via DWARF
Fixes: CVE-2023-0302
2023-01-15 22:01:01 +01:00
Thomas Gerbet
2c8cc56ebc radare2: apply patch for CVE-2022-4843
https://huntr.dev/bounties/075b2760-66a0-4d38-b3b5-e9934956ab7f/
2023-01-09 19:15:31 +01:00
Jörg Thalheim
de06087c9d radare2: 5.7.8 -> 5.8.0 2022-12-23 10:50:38 +01:00
Jörg Thalheim
62314d2169 radare2: drop unused useFlag and fix cross compilation
Signed-off-by: Jörg Thalheim <joerg@thalheim.io>
2022-11-13 21:40:21 +01:00
Jörg Thalheim
3d16a81bad radare2: fix macos build 2022-11-13 21:31:08 +01:00
Azat Bahawi
bc0e439506 radare2: 5.7.2 -> 5.7.8 2022-11-11 00:55:27 +03:00
Artturin
7e49471316 treewide: optional -> optionals where the argument is a list
the argument to optional should not be list
2022-10-10 15:40:21 +03:00
Bernardo Meurer
918d9e32e7 Merge pull request #178659 from jiegec/radare2
radare2: 5.6.8 -> 5.7.2
2022-06-23 12:02:09 -04:00
Jiajie Chen
6cd5486acc radare2: unbreak on Darwin 2022-06-23 09:36:35 +08:00
Jiajie Chen
32f04f79d6 radare2: 5.6.8 -> 5.7.2
https://github.com/radareorg/radare2/releases/tag/5.7.2
2022-06-23 09:21:25 +08:00
Jörg Thalheim
f2454a4502 radare2: 5.6.8 -> 5.7.0 2022-06-01 09:13:20 +02:00
Rick van Schijndel
13e0d33703 treewide: pkgs/development/tools: mark broken for darwin 2022-05-30 13:41:14 +02:00
FliegendeWurst
85d729d4e5 radare2: 5.6.4 -> 5.6.8 2022-04-24 14:45:07 +02:00
Jörg Thalheim
3abcc5b5e0 radare2: 5.6.2 -> 5.6.4 2022-02-28 14:44:36 +01:00
arkivm
0560db5867 radare2: 5.6.0 -> 5.6.2 2022-02-19 12:46:03 -08:00
Konstantin Alekseev
df61cc1c2a radare2: fix link to libcapstone
fixes #160580
2022-02-18 11:31:05 +03:00
Jörg Thalheim
90afb85ad3 radare2: 5.5.4 -> 5.6.0 2022-02-09 19:05:07 +01:00