summaryrefslogtreecommitdiff
path: root/pkgs/development/tools/analysis (follow)
Commit message (Expand)AuthorAgeFilesLines
* various: use stdenv.mkDerivation instead of qt5.mkDerivation•••this shouldn't create any rebuilds quantenzitrone2026-01-261-2/+4
* Merge staging-next into stagingnixpkgs-ci[bot]2026-01-072-67/+3
|\
| * flow: move to by-nameGaetan Lepage2026-01-061-64/+0
| * tflint-plugins.tflint-ruleset-google: 0.37.1 -> 0.38.0 (#476813)Nick Cao2026-01-061-3/+3
| |\
| | * tflint-plugins.tflint-ruleset-google: 0.37.1 -> 0.38.0R. Ryantm2026-01-041-3/+3
* | | glibc: 2.40-66 -> 2.42-47 (#379542)Vladimír Čunát2026-01-061-0/+9
|\ \ \ | |/ / |/| |
| * | rr: fix build w/ glibc-2.42•••Failing Hydra build: https://hydra.nixos.org/build/308527220 Maximilian Bosch2026-01-031-0/+9
* | | tflint-plugins.tflint-ruleset-aws: 0.44.0 -> 0.45.0R. Ryantm2026-01-041-3/+3
| |/ |/|
* | radare2: 6.0.4 -> 6.0.7 (#475394)Azat Bahawi2026-01-011-9/+9
|\ \
| * | radare2: 6.0.4 -> 6.0.7c6rg02026-01-011-9/+9
* | | maintainers: remove dtzWill•••Totally inactive on GitHub since August 2024. Michael Daniels2026-01-011-4/+1
| |/ |/|
* | Merge staging-next into stagingnixpkgs-ci[bot]2025-12-152-3/+4
|\|
| * dune: move out of ocamlPackages (#468883)Vincent Laporte2025-12-151-1/+2
| |\
| | * dune_3: move out of ocamlPackagesVincent Laporte2025-12-101-1/+2
| * | treewide: remove remaining `meta = with lib;`Ihar Hrachyshka2025-12-141-2/+2
| |/
* | Merge branch 'staging-next' into stagingWolfgang Walther2025-12-1011-34/+34
|\|
| * treewide: clean up 'meta = with' pattern•••This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de> Ihar Hrachyshka2025-12-1011-34/+34
* | versionCheckHook: Check for --version first (#463218)Philip Taron2025-11-261-1/+0
|\ \ | |/ |/|
| * treewide: Remove redundant `versionCheckProgramArg = "--version";` with:•••```shell git grep -l -e 'versionCheckProgramArg = "--version";' -e 'versionCheckProgramArg = \[ "--version" \];' | while read f; do sed -i '/versionCheckProgramArg/d' "$f" sed -i '/^$/N;/\n$/D' "$f" done ``` Jonathan Davies2025-11-201-1/+0
* | rizin: add `binutils` dependency (#463219)7c6f434c2025-11-241-0/+7
|\ \ | |/ |/|
| * rizin: add `binutils` dependencybpavuk2025-11-191-0/+7
* | tflint-plugins.tflint-ruleset-google: 0.36.0 -> 0.37.1R. Ryantm2025-11-181-3/+3
|/
* tflint-plugins.tflint-ruleset-aws: 0.43.0 -> 0.44.0R. Ryantm2025-11-161-3/+3
* massif-visualizer: fix build with CMake 4•••Link: https://github.com/NixOS/nixpkgs/issues/445447 NAHO2025-10-272-0/+12
* flow: 0.281.0 -> 0.288.0R. Ryantm2025-10-131-2/+2
* snowman: drop•••The upstream repository has been wiped, the package is unmaintained, and it does not build anymore as of the CMake 3.5 compatibility drop. Tim Schumacher2025-10-121-41/+0
* tflint-plugins.tflint-ruleset-aws: 0.42.0 -> 0.43.0 (#450492)Nick Cao2025-10-101-3/+3
|\
| * tflint-plugins.tflint-ruleset-aws: 0.42.0 -> 0.43.0R. Ryantm2025-10-091-3/+3
* | radare2: 6.0.2 -> 6.0.4 (#450040)Fabian Affolter2025-10-101-2/+2
|\ \ | |/ |/|
| * 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 Fabian Affolter2025-10-081-2/+2
* | tflint-plugins.tflint-ruleset-google: 0.35.0 -> 0.36.0R. Ryantm2025-10-071-3/+3
|/
* treewide: migrate to by-name (#448721)Yohann Boniface2025-10-062-105/+0
|\
| * treewide: migrate to by-nameMichael Daniels2025-10-052-105/+0
* | include-what-you-use: 0.24 -> 0.25 (#446352)Yohann Boniface2025-10-051-2/+5
|\ \ | |/ |/|
| * include-what-you-use: 0.24 -> 0.25Jaiden Douglas2025-09-261-2/+2
| * include-what-you-use: add ja1den as maintainerJaiden Douglas2025-09-261-0/+3
* | treewide: remove unused rec•••Auto-fix by nixf-diagnose. Wolfgang Walther2025-10-051-1/+1
* | pkgs: remove optional builtins prefixes from prelude functions•••Remove optional builtins prefixes from prelude functions by running: builtins=( abort baseNameOf break derivation derivationStrict dirOf false fetchGit fetchMercurial fetchTarball fetchTree fromTOML import isNull map null placeholder removeAttrs scopedImport throw toString true ) fd \ --type file \ . \ pkgs \ --exec-batch sed --in-place --regexp-extended " s/\<builtins\.($( printf '%s\n' "${builtins[@]}" | paste --delimiter '|' --serial - ))\>/\1/g " nix fmt NAHO2025-10-041-1/+1
|/
* flow: 0.279.0 -> 0.281.0 (#443225)Wolfgang Walther2025-09-231-2/+2
|\
| * flow: 0.279.0 -> 0.281.0R. Ryantm2025-09-151-2/+2
* | linuxPackages_latest.rr-zen_workaround: fix build•••Upstream has already merged a this fix, but there's no release yet. Vladimír Čunát2025-09-181-0/+9
|/
* ikos: dropEmily2025-09-141-84/+0
* nix-linter: drop•••This was marked broken 3 years ago, does not build, is unmaintained in Nixpkgs and upstream. Wolfgang Walther2025-09-061-65/+0
* sparse: 0.6.4 -> 0.6.4-unstable-2024-02-03 (#437364)Niklas Korz2025-09-051-5/+6
|\
| * sparse: 0.6.4 -> 0.6.4-unstable-2024-02-03•••Supports modern versions of LLVM. Arch is shipping this Git revision as well. Emily2025-08-271-5/+6
* | tflint-plugins.tflint-ruleset-google: 0.34.0 -> 0.35.0R. Ryantm2025-08-291-3/+3
|/
* flow: 0.277.1 -> 0.279.0 (#431647)Weijia Wang2025-08-221-2/+2
|\
| * flow: 0.277.1 -> 0.279.0R. Ryantm2025-08-151-2/+2
* | qcachegrind: drop•••Builds on old Qt5 version of kcachegrind, which itself is getting dropped. K9002025-08-211-66/+0
* | hopper: 5.18.0 -> 5.19.4 (#434494)Nick Cao2025-08-191-3/+3
|\ \