Commit graph

369989 commits

Author SHA1 Message Date
Mario Rodas 541e870d94
Merge pull request #168856 from marsam/update-tldr
tldr: 1.4.2 -> 1.4.3
2022-04-16 08:14:17 -05:00
Guillaume Girol 2a4c323276
Merge pull request #168349 from viraptor/ejson2env-version
ejson2env: add version
2022-04-16 13:10:56 +00:00
Guillaume Girol 649b8992ed
Merge pull request #168405 from dotlambda/abcmidi-2022.04.06
abcmidi: 2022.03.20 -> 2022.04.06
2022-04-16 13:05:47 +00:00
06kellyjac 5ed926eb38 trivy: 0.25.3 -> 0.26.0 2022-04-16 14:05:01 +01:00
Florian Klink b2383b6329
Merge pull request #168306 from flokli/nixos-doc-installer-drivers
nixos/doc: add notes on additional drivers or firmware
2022-04-16 15:03:24 +02:00
Martin Weinelt c846ab80fc
Merge pull request #168388 from rembo10/sickgear-update
sickgear: 0.25.28 -> 0.25.31
2022-04-16 14:48:04 +02:00
Thiago Kenji Okada 6b2691d7ce graalvmXX-ce: add documentation to mkGraal function 2022-04-16 13:38:25 +01:00
Timo Kaufmann 4671196d03
Merge pull request #165968 from fgaz/xprintidle/init
xprintidle: init at 0.2.4
2022-04-16 14:05:50 +02:00
Maxine Aubrey d9d57d2053
yaru-theme: unstable-2022-04-07 -> 22.04.4 2022-04-16 14:03:16 +02:00
Mark Vainomaa 9f4b7f2952
libpostal: mark supported on darwin 2022-04-16 15:00:45 +03:00
Thiago Kenji Okada 5c9a866551 graalvmXX-ce: add sourcesPath parameter
In #168816, we removed support for Python/Ruby/WASM to reduce the
support burden of GraalVM languages that, arguably, are not really being
used.

However, the way that `pkgs.graalvmCEPackages.mkGraal` function works
right now doesn't allow passing a custom sources file, that would allow
someone to compile GraalVM with the additional products (e.g.: Python).
This PR adds this possibility.

So if someone wants to create a custom graalvm11-ce derivation with
Python support, for example, they can do something like this:

```nix
let
   graalvm11-ce-custom = pkgs.graalvmCEPackages.mkGraal {
      config = {
         x86_64-linux = {
            products = [ "graalvm-ce" "python-installable-svm" ];
            arch = "linux-amd64";
         };
      };
      defaultVersion = "22.0.0.2";
      javaVersion = "11";
      platforms = "x86_64-linux";
      sourcesPath = /home/someone/graalvm11-ce-sources.json;
   };
in
{
   environment.systemPackages = [ graalvm11-ce-custom ];
}
```
2022-04-16 12:59:54 +01:00
Luflosi faad370edc nixos/ipfs: fix the services.ipfs.autoMigrate option
Apparently this was never properly tested and never worked. When the IPFS repo needs upgrading, the first call to ipfs, which is run before running the migration, fails with the error message "Error: ipfs repo needs migration".
To fix this, simply run the migration before any `ipfs config` calls but don't run it when `dataDir` is empty and we need to call `ipfs init`.
Writing a NixOS test for this would require keeping at least two versions of IPFS in Nixpkgs, which we don't currently do.
2022-04-16 07:38:13 -04:00
Luflosi 8a5e51525d nixos/ipfs: add Luflosi as maintainer 2022-04-16 07:38:13 -04:00
Luflosi 6b2eca8d56 nixos/ipfs: remove unused code
This code became obsolete with 4044d81d5c, just a couple days after it was introduced.
2022-04-16 07:38:13 -04:00
X9VoiD 077d187a4b broadcom_sta: fix build on linux 5.17
Fix build issues when compiling against Linux 5.17
2022-04-16 13:15:26 +02:00
ajs124 f699697857
Merge pull request #164790 from r-ryantm/auto-update/mackerel-agent
mackerel-agent: 0.72.8 -> 0.72.9
2022-04-16 12:08:29 +01:00
Martin Weinelt 009f4890e0
Merge pull request #168516 from Ericson2314/newer-wasi-libc 2022-04-16 13:02:07 +02:00
ajs124 1622d0fe71
Merge pull request #164787 from r-ryantm/auto-update/liquibase
liquibase: 4.8.0 -> 4.9.0
2022-04-16 11:56:29 +01:00
Faye Duxovni bc5e8ae506 buildRustCrate: don't try to set CARGO_FEATURE_ variables for dep: features
These features are internal-only, have special characters that bash
doesn't support in variable names, and aren't normally given
environment variables by cargo as far as I can tell.
2022-04-16 06:53:45 -04:00
R. Ryantm 4624d0a8d3 bacon: 2.0.1 -> 2.1.0 2022-04-16 06:50:47 -04:00
R. Ryantm 4f1fd175d3 brave: 1.37.113 -> 1.37.116 2022-04-16 12:48:00 +02:00
Franz Pletz fc4e939cef
Merge pull request #162550 from fortuneteller2k/polybar 2022-04-16 12:47:18 +02:00
Artturi efc532dc6f
Merge pull request #168868 from marsam/update-starship
starship: 2022-04-12 -> 1.6.2
2022-04-16 13:37:20 +03:00
Thiago Kenji Okada 113a29b107
Merge pull request #168816 from thiagokokada/graalvm-cleanup
graalvmXX-ee: remove; graalvmXX-ce: remove Ruby/Python/WASM support
2022-04-16 11:36:41 +01:00
Maximilian Bosch a278bc7ee5
Merge pull request #168780 from Ma27/bump-eva
eva: 0.2.7 -> 0.3.0
2022-04-16 12:35:29 +02:00
R. Ryantm 7062faa185 python310Packages.pg8000: 1.24.1 -> 1.24.2 2022-04-16 10:15:36 +00:00
Thiago Kenji Okada 7b6c4f0c2a
Merge pull request #168849 from r-ryantm/auto-update/babashka
babashka: 0.8.0 -> 0.8.1
2022-04-16 11:13:12 +01:00
Thiago Kenji Okada bc73bc21ce graalvm17-ce: enable Native Image in aarch64-linux
Co-authored-by: tricktron <tgagnaux@gmail.com>
2022-04-16 11:08:15 +01:00
Fabian Affolter 93086bf7d0
Merge pull request #168850 from r-ryantm/auto-update/python3.10-pyamg
python310Packages.pyamg: 4.2.2 -> 4.2.3
2022-04-16 12:07:04 +02:00
Fabian Affolter ebdb850fc4
Merge pull request #168894 from fabaff/bump-pymazda
python3Packages.pymazda: 0.3.2 -> 0.3.3
2022-04-16 11:17:37 +02:00
Fabian Affolter 2f336f4efd
Merge pull request #168001 from fabaff/rns
python3Packages.rns: init at 0.3.4, python3Packages.nomadnet: init at 0.1.7, python3Packages.lxmf: init at 0.1.4
2022-04-16 10:57:08 +02:00
Fabian Affolter 645e0d852d
Merge pull request #168854 from aaronjheng/sudolikeaboss
sudolikeaboss: remove
2022-04-16 10:56:21 +02:00
Fabian Affolter 847c858b21
Merge pull request #168889 from fabaff/bump-flux-led
python3Packages.flux-led: 0.28.27 -> 0.28.28
2022-04-16 10:53:03 +02:00
Fabian Affolter 439aa7ffa7
Merge pull request #168891 from r-ryantm/auto-update/python3.10-syslog-rfc5424-formatter
python310Packages.syslog-rfc5424-formatter: 1.2.2 -> 1.2.3
2022-04-16 10:52:42 +02:00
Thiago Franco de Moraes 0e9bebed0c neovim: 0.6.0 -> 0.7.0 2022-04-16 10:39:52 +02:00
fortuneteller2k 3016d0aeb8 polybar: 3.5.7 -> 3.6.2
Co-authored-by: Alexander Foremny <aforemny@posteo.de>
2022-04-16 08:26:44 +00:00
Nick Cao 70d0e24568 nixos/logrotate: use packages from buildPackages in configuration checkPhase, fixing cross compilation 2022-04-16 10:22:39 +02:00
Fabian Affolter a86ec5d4d6 python3Packages.pymazda: 0.3.2 -> 0.3.3 2022-04-16 10:15:51 +02:00
Fabian Affolter 389ea38a85
python3Packages.syslog-rfc5424-formatter: disable on older Python releases 2022-04-16 10:09:33 +02:00
R. Ryantm 8fe13bfac7 python310Packages.syslog-rfc5424-formatter: 1.2.2 -> 1.2.3 2022-04-16 07:52:39 +00:00
Fabian Affolter b558afaa5f python3Packages.flux-led: 0.28.27 -> 0.28.28 2022-04-16 09:44:33 +02:00
Fabian Affolter 0e5bfe647d
Merge pull request #168528 from papojari/dabet
dabet: init at 2.0.0
2022-04-16 09:42:23 +02:00
Fabian Affolter 7d99e59b30
Merge pull request #168333 from r-ryantm/auto-update/python3.10-vertica-python
python310Packages.vertica-python: 1.0.4 -> 1.0.5
2022-04-16 09:38:41 +02:00
Fabian Affolter 79675fd840
Merge pull request #168876 from dotlambda/git-annex-adapter-fix
python3Packages.git-annex-adapter: fix build
2022-04-16 09:37:45 +02:00
Sandro 1ca334d1c3
Merge pull request #168884 from SuperSandro2000/kde-frameworks-update-homepage
kde-frameworks: update homepage
2022-04-16 09:25:16 +02:00
Sandro 5e6bd5771b
kde-frameworks: update homepage 2022-04-16 08:45:50 +02:00
Sandro Jäckel 2ca1c98617
vscode: fix auto encoding detection crashing editor window
Closes #152939
2022-04-16 08:35:55 +02:00
Sandro Jäckel 92fe27da60
vscode: move asar to nativeBuildInputs 2022-04-16 08:35:55 +02:00
adisbladis 4f0ec2c783
Merge pull request #168076 from azahi/emacs-28.1
emacs: 27.2 -> 28.1
2022-04-16 12:21:18 +07:00
Robert Schütz 913242e45c python3Packages.git-annex-adapter: fix build 2022-04-16 05:01:35 +00:00