| Commit message (Expand) | Author | Age | Files | Lines |
| * | various: use stdenv.mkDerivation instead of qt5.mkDerivation (#483875) | Gergő Gutyina | 2026-01-31 | 1 | -3/+6 |
| |\ |
|
| | * | various: use stdenv.mkDerivation instead of qt5.mkDerivation•••this shouldn't create any rebuilds
| quantenzitrone | 2026-01-26 | 1 | -3/+6 |
| * | | gnuplot: remove nulls from inputs | Sandro Jäckel | 2026-01-26 | 1 | -10/+9 |
| |/ |
|
| * | gnuplot: 6.0.3 -> 6.0.4 | R. Ryantm | 2025-12-21 | 1 | -2/+2 |
| * | 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 Hrachyshka | 2025-12-10 | 1 | -3/+3 |
| * | gnuplot: use gnuplot license | Sandro Jäckel | 2025-11-03 | 1 | -9/+1 |
| * | treewide: run nixfmt 1.0.0 | Wolfgang Walther | 2025-07-24 | 1 | -32/+31 |
| * | gnuplot: 6.0.2 -> 6.0.3 | R. Ryantm | 2025-06-15 | 1 | -2/+2 |
| * | treewide: remove usage of deprecated apple_sdk framework stubs•••They are not doing anything right now. This is in preparation for their
complete removal from the tree.
Note: several changes that affect the derivation inputs (e.g. removal of
references to stub paths in build instructions) were left out. They will
be cleaned up the next iteration and will require special care.
Note: this PR is a result of a mix of ugly regex (not AST) based
automation and some manual labor. For reference, the regex automation
part was hacked in: https://github.com/booxter/nix-clean-apple_sdk
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
| Ihar Hrachyshka | 2025-04-19 | 1 | -3/+1 |
| * | treewide: fix typos in comments•••Made with
```shell
git restore .
fd '\.nix$' pkgs/ --type f -j1 -x bash -xc "$(cat <<"EOF"
typos --no-check-filenames --write-changes "$1"
git diff --exit-code "$1" && exit
#( git diff "$1" | grep -qE "^\+ +[^# ]") && git restore "$1"
count1="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> ' | wc -l )"
count2="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> (<span style="color:#f8f8f2;"> *</span>)?<span style="color:#75715e;">.*</span>$' | wc -l )"
[[ $count1 -ne $count2 ]] && git restore "$1"
EOF
)" -- {}
```
and filtered with `GIT_DIFF_OPTS='--unified=15' git -c interactive.singleKey=true add --patch`
I initially tried using the tree-sitter cli, python bindings and even ast-grep through various means, but this is what I ended up with.
| Peder Bergebakken Sundt | 2025-02-24 | 1 | -1/+1 |
| * | gnuplot: 6.0.1 -> 6.0.2 | R. Ryantm | 2024-12-21 | 1 | -2/+2 |
| * | 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 https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \
--argstr baseRev b32a0943687d2a5094a6d92f25a4b6e16a76b5b7
result/bin/apply-formatting $NIXPKGS_PATH
| Silvan Mosberger | 2024-12-10 | 1 | -25/+72 |
| * | gnuplot: fix build with `withTeXLive = true` | t4ccer | 2024-10-31 | 1 | -1/+2 |
| * | 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"
```
| Artturin | 2024-09-25 | 1 | -3/+3 |
| * | treewide: Remove indefinite article from meta.description•••nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
| Alexis Hildebrandt | 2024-06-09 | 1 | -1/+1 |
| * | gnuplot: 6.0.0 -> 6.0.1 | R. Ryantm | 2024-05-31 | 1 | -2/+2 |
| * | gnuplot: 5.4.10 -> 6.0.0 | R. Ryantm | 2023-12-31 | 1 | -2/+2 |
| * | Merge pull request #262709 from r-ryantm/auto-update/gnuplot•••gnuplot: 5.4.9 -> 5.4.10 | Pol Dellaiera | 2023-11-27 | 1 | -2/+2 |
| |\ |
|
| | * | gnuplot: 5.4.9 -> 5.4.10 | R. Ryantm | 2023-10-22 | 1 | -2/+2 |
| * | | treewide: add mainProgram | h7x4 | 2023-11-23 | 1 | -0/+1 |
| * | | gnuplot: replace texlive.combine with texliveSmall | Vincenzo Mantova | 2023-11-05 | 1 | -2/+2 |
| |/ |
|
| * | gnuplot: 5.4.8 -> 5.4.9 | R. Ryantm | 2023-09-24 | 1 | -2/+2 |
| * | gnuplot: 5.4.6 -> 5.4.8 | R. Ryantm | 2023-06-14 | 1 | -2/+2 |
| * | Merge pull request #230734 from Mindavi/gnuplot/cross•••gnuplot: fix cross-compilation by disabling docs and demos | Rick van Schijndel | 2023-05-21 | 1 | -0/+6 |
| |\ |
|
| | * | gnuplot: fix cross-compilation by disabling docs and demos•••Now we can cross-build rtl_433 completely!
| Rick van Schijndel | 2023-05-08 | 1 | -0/+6 |
| * | | gnuplot: use lib.makeBinPath to condense wrapper | Sandro Jäckel | 2023-05-09 | 1 | -3/+1 |
| |/ |
|
| * | gnuplot-qt: fix wrapper | K900 | 2023-04-30 | 1 | -1/+8 |
| * | gnuplot: 5.4.5 -> 5.4.6 | R. Ryantm | 2023-03-02 | 1 | -2/+2 |
| * | Merge pull request #195910 from wegank/gnuplot-wxgtk | Sandro | 2022-11-04 | 1 | -2/+3 |
| |\ |
|
| | * | gnuplot: migrate to wxGTK32 | Weijia Wang | 2022-10-14 | 1 | -2/+3 |
| * | | gnuplot: 5.4.4 -> 5.4.5 | R. Ryantm | 2022-10-03 | 1 | -2/+2 |
| |/ |
|
| * | gnuplot: 5.4.3 -> 5.4.4 | R. Ryantm | 2022-07-28 | 1 | -2/+2 |
| * | gnuplot: 5.4.2 -> 5.4.3 | R. Ryantm | 2022-02-11 | 1 | -2/+2 |
| * | treewide: remove darwin-only manual wrapQtApp invocations | Dmitry Kalinkin | 2021-09-28 | 1 | -2/+0 |
| * | gnuplot: Allow compiling with libcaca (#137523)•••Co-authored-by: Sandro <sandro.jaeckel@gmail.com> | Michal Sojka | 2021-09-12 | 1 | -1/+3 |
| * | gnuplot: 5.4.1 -> 5.4.2 | R. RyanTM | 2021-06-05 | 1 | -2/+2 |
| * | pkgs/tools: pkgconfig -> pkg-config (2) | Ben Siraphob | 2021-01-17 | 1 | -2/+2 |
| * | gnuplot: 5.4.0 -> 5.4.1 | R. RyanTM | 2020-12-05 | 1 | -2/+2 |
| * | gnuplot: 5.2.8 -> 5.4.0 | R. RyanTM | 2020-07-21 | 1 | -2/+2 |
| * | treewide: Per RFC45, remove all unquoted URLs | Michael Reilly | 2020-04-10 | 1 | -2/+2 |
| * | gnuplot_qt: fix on darwin | Dmitry Kalinkin | 2020-03-17 | 1 | -0/+4 |
| * | gnuplot: 5.2.7 -> 5.2.8•••http://www.gnuplot.info/ReleaseNotes_5_2_8.html
| Will Dietz | 2020-01-07 | 1 | -3/+4 |
| * | gnuplot_qt: Use qt mkDerivation•••Fixes this error:
gnuplot> plot [-5:5] sin(x)
qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in ""
This application failed to start because no Qt platform plugin could
be initialized. Reinstalling the application may fix this problem.
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
| Anders Kaseorg | 2019-12-06 | 1 | -2/+2 |
| * | gnuplot: 5.2.6 -> 5.2.7•••Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gnuplot/versions
| R. RyanTM | 2019-06-01 | 1 | -2/+2 |
| * | gnuplot: 5.2.5 -> 5.2.6•••Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gnuplot/versions
| R. RyanTM | 2019-03-21 | 1 | -2/+2 |
| * | gnuplot: 5.2.4 -> 5.2.5•••http://www.gnuplot.info/ReleaseNotes_5_2_5.html
| Will Dietz | 2018-10-08 | 1 | -2/+2 |
| * | gnuplot: add license | Markus Kowalewski | 2018-08-20 | 1 | -0/+9 |
| * | pkgs/*: remove unreferenced function arguments | volth | 2018-07-21 | 1 | -1/+0 |
| * | gnuplot: 5.2.3 -> 5.2.4 (#41505)•••http://www.gnuplot.info/ReleaseNotes_5_2_4.html | Will Dietz | 2018-06-06 | 1 | -2/+2 |
| * | gnuplot: 5.2.2 -> 5.2.3•••Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/gnuplot/versions.
These checks were done:
- built on NixOS
- ran ‘/nix/store/3kixi49gqbpjnkrgdavmzkbsg7aaw51p-gnuplot-5.2.3/bin/gnuplot -h’ got 0 exit code
- ran ‘/nix/store/3kixi49gqbpjnkrgdavmzkbsg7aaw51p-gnuplot-5.2.3/bin/gnuplot --help’ got 0 exit code
- ran ‘/nix/store/3kixi49gqbpjnkrgdavmzkbsg7aaw51p-gnuplot-5.2.3/bin/.gnuplot-wrapped -h’ got 0 exit code
- ran ‘/nix/store/3kixi49gqbpjnkrgdavmzkbsg7aaw51p-gnuplot-5.2.3/bin/.gnuplot-wrapped --help’ got 0 exit code
- found 5.2.3 with grep in /nix/store/3kixi49gqbpjnkrgdavmzkbsg7aaw51p-gnuplot-5.2.3
- directory tree listing: https://gist.github.com/c09c0907f914e36a3f7c086d4b978dbf
| R. RyanTM | 2018-05-07 | 1 | -2/+2 |