Commit graph

1782 commits

Author SHA1 Message Date
Eelco Dolstra 946cc38f70
Merge pull request #121263 from regnat/update-nix-unstable
nixUnstable: pre20210326_dd77f71 -> pre20210429_d15a196
2021-05-03 17:04:02 +02:00
regnat 2994db87fb nixUnstable: pre20210326_dd77f71 -> pre20210503_6d2553a
(amongst other things) several fixes to make the `ca-derivations`
experimental feature usable on a daily basis
2021-05-03 16:51:11 +02:00
Maximilian Bosch 3a7d278b54
Merge pull request #120895 from r-ryantm/auto-update/cargo-deb
cargo-deb: 1.29.1 -> 1.29.2
2021-04-30 22:36:44 +02:00
Sandro 2dc423f52b
Merge pull request #120612 from MetaDark/protontricks
protontricks: 1.4.4 -> 1.5.0
2021-04-30 14:00:52 +02:00
R. RyanTM ef10ae1f4a cargo-audit: 0.14.0 -> 0.14.1 2021-04-30 06:21:40 +00:00
Sandro e2d36db666
Merge pull request #120899 from rb2k/libdnf_update_061
libdnf: 0.60.0 -> 0.61.1
2021-04-30 01:07:54 +02:00
Marc Seeger 91ba4016a0 libdnf: 0.60.0 -> 0.61.1 2021-04-27 10:47:35 -07:00
R. RyanTM 45995d8d9e cargo-outdated: 0.9.14 -> 0.9.15 2021-04-27 17:45:54 +00:00
R. RyanTM d8bc7c0dbe cargo-deb: 1.29.1 -> 1.29.2 2021-04-27 17:04:15 +00:00
Kira Bruneau 27f60ec4b8 protontricks: 1.4.4 -> 1.5.0
- Update steam-run.patch to support Pressure Vessel runtime
- Fix adding $PROTON_DIST_PATH/lib to LD_LIBRARY_PATH when using legacy runtime
- Use bash instead of /bin/sh now that wrappers are non-POSIX compliant
- Remove `test_run_steam_runtime_not_found` in steam-run.patch instead of using disabledTests
- Add import check
2021-04-25 13:08:06 -04:00
Sandro ca79e14afe
Merge pull request #120108 from zowoq/nixpkgs-review
nixpkgs-review: 2.5.0 -> 2.6.0
2021-04-22 02:15:47 +02:00
zowoq b07b0deed5 nixpkgs-review: 2.5.0 -> 2.6.0
https://github.com/Mic92/nixpkgs-review/releases/tag/2.6.0
2021-04-22 08:16:36 +10:00
zowoq 765296d96f nix-update: 0.3.2 -> 0.4.0
https://github.com/Mic92/nix-update/releases/tag/0.4.0
2021-04-21 08:36:49 +10:00
Sandro e13e4e6ce2
Merge pull request #119330 from alyssais/apk-tools
apk-tools: 2.12.2 -> 2.12.5
2021-04-13 18:55:36 +02:00
Domen Kožar e002b635cd
Merge pull request #119317 from sternenseemann/static-naming
stdenv.mkDerivation: add -static to name if building statically
2021-04-13 15:04:02 +02:00
Alyssa Ross 10c66e50eb
apk-tools: 2.12.2 -> 2.12.5
Fixes: https://github.com/NixOS/nixpkgs/pull/112594
2021-04-13 12:43:43 +00:00
Guillaume Girol 46163f6fef
nix-du: 0.3.3 -> 0.3.4 (#119243)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-13 13:47:23 +02:00
sternenseemann f4e8746cb2 nix{,Unstable}: pass pname, version to mkDerivation
This allows stdenv.mkDerivation to append -static to the name for
pkgsStatic.nix / nixStatic which should make nix-env stop thinking
that nixStatic is a newer version of nix.

This change replaces #119310.
2021-04-13 13:10:56 +02:00
Jan Tojnar c04a14edd6 Merge branch 'master' into staging-next 2021-04-06 16:01:14 +02:00
Taeer Bar-Yam d9424d2191
appimagekit: 2018-07-27 -> 2020-12-31 (#116501)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-06 12:46:54 +02:00
Sandro Jäckel 3453b89f4b
lzma: deprecate alias 2021-04-04 19:49:52 +02:00
Sandro Jäckel d24e2d1b0b
gmock: deprecate alias 2021-04-04 03:18:59 +02:00
github-actions[bot] b3a0328b7f
Merge master into staging-next 2021-04-02 18:14:54 +00:00
Robert Hensing 85ae7d02da nix: Run sandbox tests
on linux.

To find problems like this earlier: https://github.com/NixOS/nix/pull/4659
2021-04-02 10:51:31 +02:00
volth be6458dce3
nix.perl-bindings: add passthru.perlModule
... so it can be used in `perl.withPackages`
2021-03-31 21:35:38 +02:00
volth a480ba06d9
nix-serve: $PERL5LIB -> perl.withPackages 2021-03-31 21:35:37 +02:00
rnhmjoj 61b7cab481
treewide: use perl.withPackages when possible
Since 03eaa48 added perl.withPackages, there is a canonical way to
create a perl interpreter from a list of libraries, for use in script
shebangs or generic build inputs. This method is declarative (what we
are doing is clear), produces short shebangs[1] and needs not to wrap
existing scripts.

Unfortunately there are a few exceptions that I've found:

  1. Scripts that are calling perl with the -T switch. This makes perl
  ignore PERL5LIB, which is what perl.withPackages is using to inform
  the interpreter of the library paths.

  2. Perl packages that depends on libraries in their own path. This
  is not possible because perl.withPackages works at build time. The
  workaround is to add `-I $out/${perl.libPrefix}` to the shebang.

In all other cases I propose to switch to perl.withPackages.

[1]: https://lwn.net/Articles/779997/
2021-03-31 21:35:37 +02:00
Maximilian Bosch 71489aa317
Merge pull request #117758 from cole-h/nix
nixUnstable: pre20210317_8a5203d -> pre20210326_dd77f71
2021-03-28 23:53:35 +02:00
Sandro 1b879f9cfd
Merge pull request #117798 from LeSuisse/rpm-4.16.1.3
rpm: 4.16.1.2 -> 4.16.1.3
2021-03-28 22:56:53 +02:00
Sander van der Burg 4ae1fa61ad Revert "nixos/dysnomia nixos/disnix: Drop modules"
This reverts commit a3f4db8679.
2021-03-28 21:37:43 +02:00
Fabian Affolter 56976f31e3
Merge pull request #117431 from r-ryantm/auto-update/emplace
emplace: 1.4.0 -> 1.4.1
2021-03-27 17:28:09 +01:00
Thomas Gerbet 46caf2601c rpm: 4.16.1.2 -> 4.16.1.3
Fixes CVE-2021-3421, CVE-2021-20271 and CVE-2021-20266.
Release notes: https://rpm.org/wiki/Releases/4.16.1.3.html
2021-03-27 15:42:05 +01:00
Cole Helbling 30050ab2fc
nixUnstable: pre20210317_8a5203d -> pre20210326_dd77f71
The flakey test was fixed.
2021-03-26 23:38:43 -07:00
Cole Helbling 1d3f053790 nixUnstable: skip flakey tests/ca/substitute.sh 2021-03-24 13:24:36 -07:00
Cole Helbling fc3227e698 nixUnstable: add util-linuxMinimal to nativeBuildInputs
Fixes an issue in tests where they can fail with `../common.sh: line 92:
unshare: command not found`.
2021-03-24 13:24:36 -07:00
happysalada 9db47b0a3a cargo-audit: add cargo audit fix by default 2021-03-24 12:36:26 +09:00
R. RyanTM b8ad44183a emplace: 1.4.0 -> 1.4.1 2021-03-24 01:17:18 +00:00
Peter Hoeg d527d1d528 home-manager: 2021-01-16 -> 2021-03-21 2021-03-23 18:38:25 +08:00
Sandro 70b3fa8c12
Merge pull request #115905 from r-ryantm/auto-update/cargo-audit
cargo-audit: 0.13.1 -> 0.14.0
2021-03-22 01:26:56 +01:00
Oleksii Filonenko 01b739f3c4
Merge pull request #116846 from r-ryantm/auto-update/emplace
emplace: 1.3.0 -> 1.4.0
2021-03-21 05:10:33 +02:00
Maximilian Bosch 8c43e77498
Merge pull request #116836 from r-ryantm/auto-update/cargo-about
cargo-about: 0.2.3 -> 0.3.0
2021-03-19 22:02:30 +01:00
Eelco Dolstra 883c55748f
Merge pull request #116807 from cole-h/nix
nixUnstable: pre20210308_1c0e3e4 -> pre20210317_8a5203d, nixos-rebuild: nix flake info -> nix flake metadata
2021-03-19 17:24:21 +01:00
R. RyanTM 10644b3ba2 emplace: 1.3.0 -> 1.4.0 2021-03-19 13:33:04 +00:00
R. RyanTM e394b88a9b cargo-about: 0.2.3 -> 0.3.0 2021-03-19 12:08:15 +00:00
Cole Helbling 370a401ee0
nixUnstable: pre20210308_1c0e3e4 -> pre20210317_8a5203d 2021-03-18 17:26:23 -07:00
R. RyanTM 202b18123c emplace: 1.2.2 -> 1.3.0 2021-03-17 11:15:37 +00:00
R. RyanTM e4f6ef4c06 emplace: 1.2.1 -> 1.2.2 2021-03-15 11:34:30 +00:00
R. RyanTM a563da6630 emplace: 1.2.0 -> 1.2.1 2021-03-13 04:28:20 +00:00
Jörg Thalheim 69a3744025
Update pkgs/tools/package-management/nix/default.nix
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-03-12 12:22:37 +00:00
Jörg Thalheim b73edccda2
nix: fix aarch64 build 2021-03-12 10:42:57 +01:00