Commit graph

499745 commits

Author SHA1 Message Date
R. Ryantm bbdd411abf python310Packages.deep-translator: 1.11.1 -> 1.11.4 2023-06-30 06:59:07 +00:00
figsoda 6df7cf2979
Merge pull request #240363 from figsoda/snazy 2023-06-29 20:00:03 -04:00
sternenseemann 8088e14e12 doc/haskell: FAQ entry on changing profiling settings globally
This is actually relatively complicated to achieve, since it involves
overriding GHC on e.g. aarch64-darwin, so the FAQ entry seems warranted.

It's also a good exercise to me, since it demonstrates some problems
with the overriding infrastructure, i.e. that it has a tendency to
inherit the pkgs fixpoint from prev. An example of this problem is
https://github.com/NixOS/nixpkgs/issues/235960, but it has different
manifestations as well. Awareness of this will also help writing the
other sections on overriding.

How complicated it is, seems to be further incentive to go ahead with
https://github.com/NixOS/nixpkgs/pull/239548 as well.
2023-06-30 01:52:42 +02:00
sternenseemann 1db464d40a doc/haskell: document {enable,disable}*Profiling functions 2023-06-30 01:52:42 +02:00
Zhong Jianxin 1cdf0bddc8
moonlight-qt: Support darwin (#239600) 2023-06-29 19:29:24 -04:00
Adam Joseph b1434f14da
Merge pull request #240247 from amjoseph-nixpkgs/libgcc-deduplicate
gcc: deduplicate boilerplate
2023-06-29 22:26:25 +00:00
K900 32141ab2e9
Merge pull request #235650 from leo60228/add-fusee-nano
fusee-nano: init at unstable-2023-05-17
2023-06-30 01:21:13 +03:00
Robert Hensing e3c1e48ef8
Merge pull request #235874 from baloo/baloo/nixosTest/lib.override-support
nixosTest: adds support for lib.extend
2023-06-30 00:02:36 +02:00
Adam Joseph cccd5112fe
Merge pull request #240590 from amjoseph-nixpkgs/pr/systems/gnuabin32-isgnu
lib.systems: add gnuabin32 to isGnu
2023-06-29 21:59:03 +00:00
Dmitry Kalinkin c57bc5f812
python310Packages.dask-awkward: 2023.6.1 -> 2023.6.3 (#240267) 2023-06-29 16:55:08 -04:00
Dmitry Kalinkin 5a8650469a
python310Packages.awkward: 2.2.2 -> 2.2.3 (#240266)
python310Packages.awkward-cpp: 16 -> 17
2023-06-29 16:54:40 -04:00
apfelkuchen6 a3cdf3186f
texlive.bin.core-big: fix luajittex on aarch64-linux (#240577) 2023-06-29 16:12:05 -04:00
Martin Weinelt 4f84d7c216
Merge pull request #240593 from amesgen/python-no-pkgs-attrs
doc/languages-frameworks/python: don't use full `pkgs` in attrs
2023-06-29 22:01:50 +02:00
amesgen 906102c911
doc/languages-frameworks/python: don't use full pkgs in attrs 2023-06-29 21:38:37 +02:00
Adam Joseph 4cb579b536 lib.systems: add gnuabin32 to isGnu
The `isGnu` predicate was missing `gnuabin32`.  This commit corrects
that by adding it.
2023-06-29 12:26:12 -07:00
Weijia Wang 2efbe2e3d9
Merge pull request #240548 from wegank/gitoxide-darwin
gitoxide: fix build on x86_64-darwin
2023-06-29 22:04:34 +03:00
figsoda 75d012aae5
Merge pull request #240130 from jhol/vim-plugins
Vim plugins
2023-06-29 14:30:23 -04:00
Fabian Affolter f782b652f3
Merge pull request #240282 from fabaff/alexapy
python311Packages.alexapy: init at 1.26.8
2023-06-29 20:00:44 +02:00
Emily 46ffa3b169
Merge pull request #240201 from donovanglover/go-thumbnailer
go-thumbnailer: init at 0.1.0
2023-06-29 19:37:34 +02:00
Janik 9f6b9f0864
Merge pull request #240561 from figsoda/typos 2023-06-29 19:30:56 +02:00
Janik 13583e3e9e
Merge pull request #240550 from mdarocha/spicetify-cli 2023-06-29 19:14:08 +02:00
Franz Pletz 0b47a8bdba
Merge pull request #238978 from fpletz/pkgs/zlib-ng-2.1.2 2023-06-29 18:57:13 +02:00
figsoda 73b1a45dd7
Merge pull request #240221 from figsoda/journal 2023-06-29 12:19:48 -04:00
figsoda e1140d1002 typos: 1.15.7 -> 1.15.8
Diff: https://github.com/crate-ci/typos/compare/v1.15.7...v1.15.8

Changelog: https://github.com/crate-ci/typos/blob/v1.15.8/CHANGELOG.md
2023-06-29 12:17:53 -04:00
Arthur Gautier 9338511350 nixosTest: provide a test for lib.extend in nixosTests & runNixOSTest 2023-06-29 09:14:58 -07:00
Arthur Gautier 562f879cd1 runNixOSTest: adds support for lib.extend
When lib overrides were used, before this commit, they would not be made
available in the configuration evaluation of nixosTest's nodes.

Sample code:
``` nix
let
  pkgs = import ./. {
    overlays = [
      (new: old: {
        lib = old.lib.extend (self: super: {
          sorry_dave = builtins.trace "There are no pod bay doors" "sorry dave";
        });
      })
    ];
  };
in
pkgs.testers.runNixOSTest {
  name = "demo lib overlay";

  nodes = {
    machine = { lib, ... }: {
      environment.etc."got-lib-overlay".text = lib.sorry_dave;
    };
  };

  testScript = { nodes }:
    ''
      start_all()
      machine.succeed('grep dave /etc/got-lib-overlay')
    '';
}
```
2023-06-29 09:13:44 -07:00
Arthur Gautier 18c734d7f2 nixosTest: adds support for lib.extend
When lib overrides were used, before this commit, they would not be made
available in the configuration evaluation of nixosTest's nodes.

Sample code:
``` nix
let
  pkgs = import ./. {
    overlays = [
      (new: old: {
        lib = old.lib.extend (self: super: {
          sorry_dave = builtins.trace "There are no pod bay doors" "sorry dave";
        });
      })
    ];
  };
in
pkgs.testers.nixosTest {
  name = "demo lib overlay";

  nodes = {
    machine = { lib, ... }: {
      environment.etc."got-lib-overlay".text = lib.sorry_dave;
    };
  };

  testScript = { nodes }:
    ''
      start_all()
      machine.succeed('grep dave /etc/got-lib-overlay')
    '';
}
```
2023-06-29 09:13:44 -07:00
Mario Rodas 7681055124
Merge pull request #240536 from marsam/update-timescaledb
postgresqlPackages.timescaledb: 2.11.0 -> 2.11.1
2023-06-29 11:05:58 -05:00
Bobby Rong c84b823065
Merge pull request #240261 from bobby285271/upd/pantheon
Pantheon updates 2023-06-28
2023-06-29 23:31:46 +08:00
Weijia Wang 39d8b1462e gitoxide: fix build on x86_64-darwin 2023-06-29 17:44:56 +03:00
Weijia Wang 4bc72cae10
Merge pull request #240491 from r-ryantm/auto-update/gcompris
gcompris: 3.2 -> 3.3
2023-06-29 17:38:07 +03:00
Weijia Wang 4cd16c45b9
Merge pull request #240443 from r-ryantm/auto-update/oneDNN
oneDNN: 3.1.1 -> 3.2
2023-06-29 17:35:31 +03:00
Weijia Wang 6b568ce356
Merge pull request #235806 from dani0854/libimobiledevice/update
libimobiledevice: switch to OpenSSL
2023-06-29 17:33:58 +03:00
Weijia Wang 3ec53d15c6
Merge pull request #240466 from r-ryantm/auto-update/flannel
flannel: 0.21.5 -> 0.22.0
2023-06-29 17:24:56 +03:00
Weijia Wang 78597395ec
Merge pull request #240385 from r-ryantm/auto-update/gfxreconstruct
gfxreconstruct: 0.9.18 -> 1.0.0
2023-06-29 17:24:30 +03:00
Sandro bc8aa1cdb0
Merge pull request #216063 from Stunkymonkey/source-and-tags-phases 2023-06-29 16:23:35 +02:00
Sandro 16b76678e3
Merge pull request #240100 from ee2500/sregex 2023-06-29 16:17:14 +02:00
Sandro b37bb797d2
Merge pull request #240311 from Luflosi/update/kubo-migrator 2023-06-29 16:16:31 +02:00
K900 da3ea1e492
Merge pull request #240360 from Myaats/linux-firmware
linux-firmware: 20230515 -> 20230625
2023-06-29 17:15:21 +03:00
Thiago Kenji Okada ff64c09409 python3Packages.pylddwrap: mark it as badPlatform in darwin 2023-06-29 11:12:09 -03:00
Thiago Kenji Okada 1543c5f4f4 python3Packages.pylddwrap: patch to use ldd from stdenv.cc.bintools.libc_bin 2023-06-29 11:12:09 -03:00
Sandro 864814228e
Merge pull request #240280 from aaronjheng/lightwalletd 2023-06-29 16:02:47 +02:00
Sandro 438a6d07da
Merge pull request #229410 from ralismark/csvkit-setuptools 2023-06-29 16:00:18 +02:00
Sandro fef4d8181d
Merge pull request #240404 from mweinelt/esphome-2023.6.3 2023-06-29 15:59:47 +02:00
mdarocha 3b8ce5ec0e spicetify-cli: 2.20.1 -> 2.20.3 2023-06-29 15:57:59 +02:00
figsoda a68e3ee900
Merge pull request #240508 from r-ryantm/auto-update/oh-my-zsh
oh-my-zsh: 2023-06-26 -> 2023-06-26
2023-06-29 09:55:57 -04:00
Sandro aecd4e5de2
Merge pull request #240461 from aaronjheng/credential-detector 2023-06-29 15:50:35 +02:00
Sandro 2eee0a746f
Merge pull request #240454 from aaronjheng/humioctl 2023-06-29 15:49:16 +02:00
Janne Heß 7a4c916440
Merge pull request #236845 from helsinki-systems/upd/mariadb
mariadb: 10.11.4, 10.10.5, 10.6.14, 10.5.21 & 10.4.30
2023-06-29 15:37:19 +02:00
Sandro 53c58a239d
Merge pull request #240328 from SuperSamus/pcsx2 2023-06-29 15:29:24 +02:00