| Commit message (Expand) | Author | Age | Files | Lines |
| * | thunderbird: 115.3.3 -> 115.4.1•••https://www.thunderbird.net/en-US/thunderbird/115.4.1/releasenotes/
(cherry picked from commit 39ddddc76b4efd1a70746907e680147e583a1cba)
origin/backport-263586-to-release-23.05 | Vladimír Čunát | 2023-10-27 | 1 | -2/+2 |
| * | thunderbird-bin: 115.3.2 -> 115.4.1•••https://www.thunderbird.net/en-US/thunderbird/115.3.3/releasenotes/
https://www.thunderbird.net/en-US/thunderbird/115.4.1/releasenotes/
(cherry picked from commit 1c946c110916e9dba0a83e9b66cd9057bb7858cd)
| Vladimír Čunát | 2023-10-27 | 1 | -265/+265 |
| * | quartus-prime-lite: workaround buildFHSEnv regression on release-23.05•••...by disabling security features. nixpkgs master branch has fixed
this with commit c945723356c17f0570217dedefac645721d6fb70
("buildFHSEnv: disable security features by default") instead.
Without this change the quartus GUI is all blank / white since switching
from the old FHS chroot implementation to the new bubblewrap one.
| Bjørn Forsman | 2023-10-26 | 1 | -0/+10 |
| * | quartus-prime-lite: use runtimeShell in wrappers•••stdenv.shell is a shell for building, runtimeShell is for running, so
the latter should be used in wrappers. (The distinction only matters
when cross-compiling.)
(cherry picked from commit 1da59d21ca4526d7449ed73ef652cfed0a4cf8ed)
| Bjørn Forsman | 2023-10-26 | 1 | -2/+2 |
| * | quartus-prime-lite: test building encrypted device model•••Prevent regressions.
(cherry picked from commit 699b86304aad27ae8b0c109c0f1d9c45bd3ed6ac)
| Bjørn Forsman | 2023-10-26 | 1 | -1/+10 |
| * | quartus-prime-lite: modelsim: fix compiling encrypted device models•••LD_PRELOADing libudev breaks compiling encrypted device models in
ModelSim, so only use LD_PRELOAD for non-ModelSim wrappers.
Before:
$ "$(NIXPKGS_ALLOW_UNFREE=1 nix-build -A quartus-prime-lite)/bin/vlog" "$(NIXPKGS_ALLOW_UNFREE=1 nix-build -A quartus-prime-lite.unwrapped)/modelsim_ase/altera/verilog/src/arriav_atoms_ncrypt.v"
[...]
** Error: /nix/store/szcr2q24izqvhz7ybalar43y5xdg172a-quartus-prime-lite-unwrapped-20.1.1.720/modelsim_ase/altera/verilog/src/arriav_atoms_ncrypt.v(38): (vlog-2163) Macro `<protected> is undefined.
** Error: /nix/store/szcr2q24izqvhz7ybalar43y5xdg172a-quartus-prime-lite-unwrapped-20.1.1.720/modelsim_ase/altera/verilog/src/arriav_atoms_ncrypt.v(38): (vlog-2163) Macro `<protected> is undefined.
** Error: (vlog-13069) /nix/store/szcr2q24izqvhz7ybalar43y5xdg172a-quartus-prime-lite-unwrapped-20.1.1.720/modelsim_ase/altera/verilog/src/arriav_atoms_ncrypt.v(38): syntax error in protected region.
[...]
Errors: 4, Warnings: 0
After:
$ "$(NIXPKGS_ALLOW_UNFREE=1 nix-build -A quartus-prime-lite)/bin/vlog" "$(NIXPKGS_ALLOW_UNFREE=1 nix-build -A quartus-prime-lite.unwrapped)/modelsim_ase/altera/verilog/src/arriav_atoms_ncrypt.v"
[...]
Errors: 0, Warnings: 0
(cherry picked from commit fcc362415e8af30817542dcf5bf4784c73c11b0b)
| Bjørn Forsman | 2023-10-26 | 1 | -6/+18 |
| * | quartus-prime-lite: move passthru towards end•••Coding style.
(cherry picked from commit 3338d3c50fe5cc314ac2622b7a36fbf2d702b509)
| Bjørn Forsman | 2023-10-26 | 1 | -2/+2 |
| * | quartus-prime-lite: buildFHSEnvChroot -> buildFHSEnv•••The former is deprecated. The latter is implemented with
buildFHSEnvBubblewrap. The reason this package was switched to
buildFHSEnvChroot in the first place[1] is fixed by passing `multiArch =
true` (which brings e.g. 32-bit dynamic loader /lib/ld-linux.so.2).
[1] Commit cae417d315dd27 ("quartus-prime: use buildFHSEnvChroot")
(cherry picked from commit a868ce987b30aa15fae192bc17100eb27d4dc65a)
| Bjørn Forsman | 2023-10-26 | 1 | -2/+6 |
| * | quartus-prime-lite: don't overwrite LD_PRELOAD•••Instead, merge the user provided LD_PRELOAD environment variable with
the hardcoded libudev.so.1 entry. User provided libs are loaded first.
(cherry picked from commit cceca28e1a1e0df71f4a96b3a909b59f8c03eca6)
| Bjørn Forsman | 2023-10-26 | 1 | -1/+1 |
| * | quartus-prime-lite: eliminate two unneeded execve syscalls•••* Set LD_PRELOAD in the profile snippet to eliminate one execve() for `env`.
* Set runScript to "" to eliminate one execve() for bash.
(cherry picked from commit f7d59bb1fbefe591f56fb516b62c9b6419a03f8d)
| Bjørn Forsman | 2023-10-26 | 1 | -2/+5 |
| * | quartus-prime-lite: expose all of quartus/bin/*•••* Upstream recommends it (adding $QUARTUS_ROOTDIR/bin to $PATH).
* It's cool that nixpkgs *can* do these tricks (only expose a subset of
programs), but in this case I don't think it's a good idea. For
example, before this change I was missing the `jtagconfig` program.
* This increases the number of programs in .../bin from 29 to 80.
(cherry picked from commit 9d7f19353b473ecd7906b0bf6218735361e6203c)
| Bjørn Forsman | 2023-10-26 | 1 | -2/+1 |
| * | quartus-prime-lite: add vcom, vdel, vmap•••These are useful for Modelsim scripting.
(cherry picked from commit 8467f914781905ae94c2caf98ea357c00539cc90)
| Bjørn Forsman | 2023-10-26 | 1 | -1/+1 |
| * | quartus-prime-lite: add lmutil•••It's tool to check the validity of licenses, and vsim suggests running
it when it has issues validating a license. (At least in Quartus
22.1.2.)
(cherry picked from commit 7a2e3db96258f55fc5fe75df4843beaf2fbcfc72)
| Bjørn Forsman | 2023-10-26 | 1 | -0/+1 |
| * | quartus-prime-lite: add /lib/ld-lsb*.so.3 dynamic loaders to FHS env•••(In preparation for adding lmutil.)
Quartus is a mix of 32- and 64-bit programs, and these "lsb" loaders are
required by some of the unwrapped binaries:
$ find /nix/store/HASH-quartus-prime-lite-unwrapped-20.1.1.720 -type f -executable | xargs -n1 patchelf --print-interpreter |& grep "ld-lsb" | sort -u
/lib64/ld-lsb-x86-64.so.3
/lib/ld-lsb.so.3
(cherry picked from commit 70faf24f4003f4cded978c7f7aecda35b7854100)
| Bjørn Forsman | 2023-10-26 | 1 | -0/+5 |
| * | quartus-prime-lite: list progs to wrap in sh instead of Nix•••This opens up for using sh globbing (and possibly wrapping *all*
programs), something which is not possible when the program list is
coded in Nix.
(cherry picked from commit b27f7919d125aa7506b108504894b7dee2466802)
| Bjørn Forsman | 2023-10-26 | 1 | -21/+19 |
| * | quartus-prime-lite: lower case local shell variables•••Upper case shell variables are generally for internal variables (SHELL,
BASH_VERSION) or environment variables (PAGER, EDITOR). Other variables
should be lower case.
(cherry picked from commit 9951cb98f49c96d71cb2e1f8b38f332c87f4cfce)
| Bjørn Forsman | 2023-10-26 | 1 | -6/+6 |
| * | quartus-prime-lite: run mkdir as needed•••Instead of maintaining both a list of executables to wrap and their
directory names, extract the directory names from the executables and
run mkdir as needed. Keep DRY.
(cherry picked from commit 1ba1fa865534078cf42a227196c365dc8f54c267)
| Bjørn Forsman | 2023-10-26 | 1 | -1/+1 |
| * | Merge pull request #263344 from NixOS/backport-263198-to-release-23.05•••[Backport release-23.05] imagemagick: 7.1.1-19 -> 7.1.1-21 | Stig | 2023-10-26 | 2 | -4/+6 |
| |\ |
|
| | * | imagemagick: add nixos-icons to passthru.tests•••See https://github.com/NixOS/nixpkgs/issues/263157.
(cherry picked from commit 9bf63352f864f40d102ac96918badfc2689caed9)
| Robert Schütz | 2023-10-25 | 1 | -0/+2 |
| | * | perlPackages.ImageMagick: 7.1.1-18 -> 7.1.1-20•••(cherry picked from commit 00d3481c14778f505d02a7783362ed406da9cc08)
| Robert Schütz | 2023-10-25 | 1 | -2/+2 |
| | * | imagemagick: 7.1.1-19 -> 7.1.1-21•••Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-19...7.1.1-21
Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
(cherry picked from commit 8357c7082bd722136149391d784d370c6cd16635)
| Robert Schütz | 2023-10-25 | 1 | -2/+2 |
| * | | Merge pull request #263218 from NixOS/backport-262550-to-release-23.05•••[Backport release-23.05] netbird: 0.23.8 -> 0.24.0 | Mario Rodas | 2023-10-26 | 1 | -3/+3 |
| |\ \ |
|
| | * | | netbird: 0.23.8 -> 0.24.0•••(cherry picked from commit 2d5a3b49c48e639ff826b812ca2998c05c0eedc7)
| FliegendeWurst | 2023-10-24 | 1 | -3/+3 |
| * | | | Merge #263083: minizip: apply patch for CVE-2023-45853•••...into release-23.05
| Vladimír Čunát | 2023-10-26 | 1 | -1/+11 |
| |\ \ \ |
|
| | * | | | minizip: apply patch for CVE-2023-45853•••Upstream PR: https://github.com/madler/zlib/pull/843
(cherry picked from commit 282d9cd278480206964640c73cab2621e77300d7)
| Thomas Gerbet | 2023-10-24 | 1 | -1/+11 |
| | * | | | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-24 | 5 | -422/+440 |
| | |\ \ \ |
|
| | | * \ \ | Merge release-23.05 into staging-next-23.05 | github-actions[bot] | 2023-10-24 | 5 | -422/+440 |
| | | |\ \ \ |
|
| | * | | | | | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-23 | 10 | -63/+37 |
| | |\| | | | |
|
| | | * | | | | Merge release-23.05 into staging-next-23.05 | github-actions[bot] | 2023-10-23 | 10 | -63/+37 |
| | | |\ \ \ \ |
|
| | * | | | | | | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-22 | 10 | -38/+35 |
| | |\| | | | | |
|
| | | * | | | | | Merge release-23.05 into staging-next-23.05 | github-actions[bot] | 2023-10-22 | 10 | -38/+35 |
| | | |\ \ \ \ \ |
|
| | * | | | | | | | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-21 | 19 | -405/+372 |
| | |\| | | | | | |
|
| | | * | | | | | | Merge release-23.05 into staging-next-23.05 | github-actions[bot] | 2023-10-21 | 19 | -405/+372 |
| | | |\ \ \ \ \ \ |
|
| | * | | | | | | | | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-20 | 22 | -50/+74 |
| | |\| | | | | | | |
|
| | | * | | | | | | | Merge release-23.05 into staging-next-23.05 | github-actions[bot] | 2023-10-20 | 22 | -50/+74 |
| | | |\ \ \ \ \ \ \ |
|
| | * | | | | | | | | | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-19 | 8 | -461/+452 |
| | |\| | | | | | | | |
|
| | | * | | | | | | | | Merge release-23.05 into staging-next-23.05 | github-actions[bot] | 2023-10-19 | 8 | -461/+452 |
| | | |\ \ \ \ \ \ \ \ |
|
| | * | | | | | | | | | | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-18 | 10 | -28/+48 |
| | |\| | | | | | | | | |
|
| | | * | | | | | | | | | Merge release-23.05 into staging-next-23.05 | github-actions[bot] | 2023-10-18 | 10 | -28/+48 |
| | | |\ \ \ \ \ \ \ \ \ |
|
| | * | | | | | | | | | | | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-17 | 8 | -43/+67 |
| | |\| | | | | | | | | | |
|
| | | * | | | | | | | | | | Merge release-23.05 into staging-next-23.05 | github-actions[bot] | 2023-10-17 | 8 | -43/+67 |
| | | |\ \ \ \ \ \ \ \ \ \ |
|
| | * | | | | | | | | | | | | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-16 | 10 | -17/+20 |
| | |\| | | | | | | | | | | |
|
| | | * | | | | | | | | | | | Merge release-23.05 into staging-next-23.05 | github-actions[bot] | 2023-10-16 | 10 | -17/+20 |
| | | |\ \ \ \ \ \ \ \ \ \ \ |
|
| | * | | | | | | | | | | | | | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-15 | 5 | -8/+23 |
| | |\| | | | | | | | | | | | |
|
| | | * | | | | | | | | | | | | Merge release-23.05 into staging-next-23.05 | github-actions[bot] | 2023-10-15 | 5 | -8/+23 |
| | | |\ \ \ \ \ \ \ \ \ \ \ \ |
|
| | * | | | | | | | | | | | | | | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-14 | 12 | -77/+86 |
| | |\| | | | | | | | | | | | | |
|
| | | * | | | | | | | | | | | | | Merge release-23.05 into staging-next-23.05 | github-actions[bot] | 2023-10-14 | 11 | -77/+82 |
| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ |
|
| | * | \ \ \ \ \ \ \ \ \ \ \ \ \ | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-13 | 14 | -170/+170 |
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ |
|
| | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | Merge staging-next-23.05 into staging-23.05 | github-actions[bot] | 2023-10-12 | 9 | -33/+206 |
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ |
|
| * | \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | Merge pull request #263511 from NixOS/backport-263467-to-release-23.05•••[Backport release-23.05] kweathercore: 0.6 -> 0.7 | K900 | 2023-10-26 | 1 | -2/+2 |
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ |
|