summaryrefslogtreecommitdiff
path: root/pkgs/tools/graphics/gnuplot (follow)
Commit message (Expand)AuthorAgeFilesLines
* various: use stdenv.mkDerivation instead of qt5.mkDerivation (#483875)Gergő Gutyina2026-01-311-3/+6
|\
| * various: use stdenv.mkDerivation instead of qt5.mkDerivation•••this shouldn't create any rebuilds quantenzitrone2026-01-261-3/+6
* | gnuplot: remove nulls from inputsSandro Jäckel2026-01-261-10/+9
|/
* gnuplot: 6.0.3 -> 6.0.4R. Ryantm2025-12-211-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 Hrachyshka2025-12-101-3/+3
* gnuplot: use gnuplot licenseSandro Jäckel2025-11-031-9/+1
* treewide: run nixfmt 1.0.0Wolfgang Walther2025-07-241-32/+31
* gnuplot: 6.0.2 -> 6.0.3R. Ryantm2025-06-151-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 Hrachyshka2025-04-191-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 Sundt2025-02-241-1/+1
* gnuplot: 6.0.1 -> 6.0.2R. Ryantm2024-12-211-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 Mosberger2024-12-101-25/+72
* gnuplot: fix build with `withTeXLive = true`t4ccer2024-10-311-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" ``` Artturin2024-09-251-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 Hildebrandt2024-06-091-1/+1
* gnuplot: 6.0.0 -> 6.0.1R. Ryantm2024-05-311-2/+2
* gnuplot: 5.4.10 -> 6.0.0R. Ryantm2023-12-311-2/+2
* Merge pull request #262709 from r-ryantm/auto-update/gnuplot•••gnuplot: 5.4.9 -> 5.4.10Pol Dellaiera2023-11-271-2/+2
|\
| * gnuplot: 5.4.9 -> 5.4.10R. Ryantm2023-10-221-2/+2
* | treewide: add mainProgramh7x42023-11-231-0/+1
* | gnuplot: replace texlive.combine with texliveSmallVincenzo Mantova2023-11-051-2/+2
|/
* gnuplot: 5.4.8 -> 5.4.9R. Ryantm2023-09-241-2/+2
* gnuplot: 5.4.6 -> 5.4.8R. Ryantm2023-06-141-2/+2
* Merge pull request #230734 from Mindavi/gnuplot/cross•••gnuplot: fix cross-compilation by disabling docs and demosRick van Schijndel2023-05-211-0/+6
|\
| * gnuplot: fix cross-compilation by disabling docs and demos•••Now we can cross-build rtl_433 completely! Rick van Schijndel2023-05-081-0/+6
* | gnuplot: use lib.makeBinPath to condense wrapperSandro Jäckel2023-05-091-3/+1
|/
* gnuplot-qt: fix wrapperK9002023-04-301-1/+8
* gnuplot: 5.4.5 -> 5.4.6R. Ryantm2023-03-021-2/+2
* Merge pull request #195910 from wegank/gnuplot-wxgtkSandro2022-11-041-2/+3
|\
| * gnuplot: migrate to wxGTK32Weijia Wang2022-10-141-2/+3
* | gnuplot: 5.4.4 -> 5.4.5R. Ryantm2022-10-031-2/+2
|/
* gnuplot: 5.4.3 -> 5.4.4R. Ryantm2022-07-281-2/+2
* gnuplot: 5.4.2 -> 5.4.3R. Ryantm2022-02-111-2/+2
* treewide: remove darwin-only manual wrapQtApp invocationsDmitry Kalinkin2021-09-281-2/+0
* gnuplot: Allow compiling with libcaca (#137523)•••Co-authored-by: Sandro <sandro.jaeckel@gmail.com>Michal Sojka2021-09-121-1/+3
* gnuplot: 5.4.1 -> 5.4.2R. RyanTM2021-06-051-2/+2
* pkgs/tools: pkgconfig -> pkg-config (2)Ben Siraphob2021-01-171-2/+2
* gnuplot: 5.4.0 -> 5.4.1R. RyanTM2020-12-051-2/+2
* gnuplot: 5.2.8 -> 5.4.0R. RyanTM2020-07-211-2/+2
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-101-2/+2
* gnuplot_qt: fix on darwinDmitry Kalinkin2020-03-171-0/+4
* gnuplot: 5.2.7 -> 5.2.8•••http://www.gnuplot.info/ReleaseNotes_5_2_8.html Will Dietz2020-01-071-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 Kaseorg2019-12-061-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. RyanTM2019-06-011-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. RyanTM2019-03-211-2/+2
* gnuplot: 5.2.4 -> 5.2.5•••http://www.gnuplot.info/ReleaseNotes_5_2_5.html Will Dietz2018-10-081-2/+2
* gnuplot: add licenseMarkus Kowalewski2018-08-201-0/+9
* pkgs/*: remove unreferenced function argumentsvolth2018-07-211-1/+0
* gnuplot: 5.2.3 -> 5.2.4 (#41505)•••http://www.gnuplot.info/ReleaseNotes_5_2_4.htmlWill Dietz2018-06-061-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. RyanTM2018-05-071-2/+2