Commit Graph

74399 Commits

Author SHA1 Message Date
linsui
d02cf46624 dialect: init at 2.0.1 2022-07-15 12:27:51 +08:00
Ken Matsui
bc5e66a82b
cpm: init at 0.35.1 2022-07-15 11:14:41 +09:00
github-actions[bot]
550974b28a
Merge staging-next into staging 2022-07-15 00:03:04 +00:00
github-actions[bot]
39b1555e8e
Merge master into staging-next 2022-07-15 00:02:22 +00:00
Maximilian Bosch
d6a24f0953
element-desktop: use electron 19 2022-07-15 00:06:01 +02:00
Ivv
ed56c82699
Merge pull request #180810 from NickCao/jtag-remote-server
jtag-remote-server: init at unstable-2022-06-09
2022-07-14 22:01:36 +02:00
Artturin
4a25775546 lua-packages: fix eval failure when cross-compiling
remove the inherit line did not work

fixes mpv for example

nix-repl> pkgsCross.aarch64-multiplatform.lua.withPackages (ps: with ps; [ luasocket ])
error: attribute 'runtimeShell' missing

       at /home/artturin/nixgits/my-nixpkgs/pkgs/top-level/all-packages.nix:849:17:

          848|       substitutions = {
          849|         shell = targetPackages.runtimeShell;
             |                 ^
          850|         passthru.tests = tests.makeWrapper;

       … while evaluating the attribute 'shell' of the derivation 'hook'

       at /home/artturin/nixgits/my-nixpkgs/pkgs/stdenv/generic/make-derivation.nix:270:7:

          269|     // (lib.optionalAttrs (attrs ? name || (attrs ? pname && attrs ? version)) {
          270|       name =
             |       ^
          271|         let

       … while evaluating 'optionalString'

       at /home/artturin/nixgits/my-nixpkgs/lib/strings.nix:203:5:

          202|     # String to return if condition is true
          203|     string: if cond then string else "";
             |     ^
          204|

       … from call site

       at /home/artturin/nixgits/my-nixpkgs/pkgs/build-support/trivial-builders.nix:536:12:

          535|         cp ${script} $out/nix-support/setup-hook
          536|       '' + lib.optionalString (deps != []) ''
             |            ^
          537|         printWords ${toString deps} > $out/nix-support/propagated-build-inputs

       … while evaluating the attribute 'buildCommand' of the derivation 'hook'

       at /home/artturin/nixgits/my-nixpkgs/pkgs/stdenv/generic/make-derivation.nix:270:7:

          269|     // (lib.optionalAttrs (attrs ? name || (attrs ? pname && attrs ? version)) {
          270|       name =
             |       ^
          271|         let

       … while evaluating anonymous lambda

       at /home/artturin/nixgits/my-nixpkgs/lib/lists.nix:646:25:

          645|    */
          646|   unique = foldl' (acc: e: if elem e acc then acc else acc ++ [ e ]) [];
             |                         ^
          647|

       … from call site

       at /home/artturin/nixgits/my-nixpkgs/pkgs/development/interpreters/lua-5/build-lua-package.nix:105:27:

          104|   # example externalDeps': [ { name = "CRYPTO"; dep = pkgs.openssl; } ]
          105|   externalDepsGenerated = lib.unique (lib.filter (drv: !drv ? luaModule) (
             |                           ^
          106|     luarocksDrv.nativeBuildInputs ++ luarocksDrv.propagatedBuildInputs ++ luarocksDrv.buildInputs)

       … while evaluating 'generateLuarocksConfig'

       at /home/artturin/nixgits/my-nixpkgs/pkgs/development/lua-modules/lib.nix:83:28:

           82|   */
           83|   generateLuarocksConfig = {
             |                            ^
           84|     externalDeps

       … from call site

       at /home/artturin/nixgits/my-nixpkgs/pkgs/development/interpreters/lua-5/build-lua-package.nix:85:23:

           84|   luarocks_content = let
           85|     generatedConfig = lua.pkgs.lib.generateLuarocksConfig {
             |                       ^
           86|       externalDeps = externalDeps ++ externalDepsGenerated;

       … while evaluating the attribute 'configurePhase' of the derivation 'lua5.2-luasocket-3.0.0-1-aarch64-unknown-linux-gnu'

       at /home/artturin/nixgits/my-nixpkgs/pkgs/stdenv/generic/make-derivation.nix:270:7:

          269|     // (lib.optionalAttrs (attrs ? name || (attrs ? pname && attrs ? version)) {
          270|       name =
             |       ^
          271|         let

       … while evaluating anonymous lambda

       at /home/artturin/nixgits/my-nixpkgs/lib/lists.nix:646:25:

          645|    */
          646|   unique = foldl' (acc: e: if elem e acc then acc else acc ++ [ e ]) [];
             |                         ^
          647|

       … from call site

       at /home/artturin/nixgits/my-nixpkgs/pkgs/development/lua-modules/lib.nix:5:6:

            4|     modules =  filter hasLuaModule drvs;
            5|   in unique ([lua] ++ modules ++ concatLists (catAttrs "requiredLuaModules" modules));
             |      ^
            6|   # Check whether a derivation provides a lua module.

       … while evaluating 'requiredLuaModules'

       at /home/artturin/nixgits/my-nixpkgs/pkgs/development/lua-modules/lib.nix:3:24:

            2| let
            3|   requiredLuaModules = drvs: with lib; let
             |                        ^
            4|     modules =  filter hasLuaModule drvs;

       … from call site

       at /home/artturin/nixgits/my-nixpkgs/pkgs/development/interpreters/lua-5/wrapper.nix:13:14:

           12|   env = let
           13|     paths =  requiredLuaModules (extraLibs ++ [ lua ] );
             |              ^
           14|   in buildEnv {

       … while evaluating the attribute 'passAsFile'

       at /home/artturin/nixgits/my-nixpkgs/pkgs/build-support/buildenv/default.nix:77:5:

           76|     # XXX: The size is somewhat arbitrary
           77|     passAsFile = if builtins.stringLength pkgs >= 128*1024 then [ "pkgs" ] else [ ];
             |     ^
           78|   }

       … while evaluating the attribute 'passAsFile' of the derivation 'lua-aarch64-unknown-linux-gnu-5.2.4-env'

       at /home/artturin/nixgits/my-nixpkgs/pkgs/stdenv/generic/make-derivation.nix:270:7:

          269|     // (lib.optionalAttrs (attrs ? name || (attrs ? pname && attrs ? version)) {
          270|       name =
             |       ^
          271|         let
2022-07-14 22:08:55 +03:00
nook
d4c74ccf4c framesh: init at 0.5.0-beta.20 2022-07-14 20:50:15 +02:00
Ivv
2ca3a5e4aa
Merge pull request #179187 from mdarocha/eventstore-bump-and-refactor
eventstore: 5.0.8 -> 21.10.5, refactor to use buildDotnetModule
2022-07-14 20:30:41 +02:00
Wael M. Nasreddine
c67eb446da
wkhtmltopdf-bin: add support for Linux 2022-07-14 11:14:00 -07:00
github-actions[bot]
1d180c0c05
Merge staging-next into staging 2022-07-14 18:02:07 +00:00
github-actions[bot]
1a74c5d703
Merge master into staging-next 2022-07-14 18:01:27 +00:00
Nick Cao
3faccf8814
rnix-lsp: pin to nix 2.9 2022-07-14 23:53:44 +08:00
Mario Rodas
16716c477d
Merge pull request #181437 from marsam/add-iredis
iredis: init at 1.12.0
2022-07-14 08:41:10 -05:00
Alex Griffin
4fe4be1b97
xmonadctl: init at 0.17.0 2022-07-14 14:28:32 +02:00
Ethin Probst
6e6436963d
gnatboot: 4.1 -> 11.2.0-4 (#177579)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-07-14 14:14:58 +02:00
Mr Hedgehog
84e684b7ec
bluetuith: init at 0.0.3 2022-07-14 07:57:27 -04:00
Alyssa Ross
7ac2cf8e83
imagemagick: rename 7.0.nix to default.nix
"7.0.nix" doesn't make any sense, because it contains version
7.1.0-39.  imagemagick6 is barely used and can probably be removed
soon, so I think it makes sense to let 7.x have the default.nix path.
2022-07-14 08:44:03 +00:00
github-actions[bot]
70e5346a93
Merge staging-next into staging 2022-07-14 06:02:10 +00:00
github-actions[bot]
4831214ba4
Merge master into staging-next 2022-07-14 06:01:25 +00:00
Peter Hoeg
b52679fe88 keyd: init at 2.4.1 2022-07-14 10:30:00 +08:00
夜坂雅
b151a79d10
renpy: init at 8.0.0 2022-07-14 10:27:27 +08:00
Mario Rodas
247ffc0eba iredis: init at 1.12.0 2022-07-14 00:04:20 +00:00
github-actions[bot]
4030af8273
Merge staging-next into staging 2022-07-14 00:03:16 +00:00
github-actions[bot]
8e78cd16b3
Merge master into staging-next 2022-07-14 00:02:36 +00:00
Azat Bahawi
a6cf69f4c4
iaito: init at 5.7.0 2022-07-14 02:39:54 +03:00
Sergei Trofimovich
38134efc76 glibcLocales, glibcLocalesUtf8: only define non-null on linux-glibc
Before the change glibcLocales was pulled in on musl (built successfully
but was not needed: musl does not know how to load glibc locales) and
on android (failed build there). Android failed eval due to the
headers -> zip -> libc recursion.

The change limits glibcLocales down to linux && gnu to target linux-glibc.
2022-07-13 20:07:50 +01:00
github-actions[bot]
60c97a605c
Merge staging-next into staging 2022-07-13 18:02:06 +00:00
github-actions[bot]
00ec8bc8d3
Merge master into staging-next 2022-07-13 18:01:28 +00:00
mdarocha
4e0e8cc0af eventstore: refactor to use buildDotnetModule 2022-07-13 17:15:39 +02:00
SuperHeroINTJ
070314b62d
Merge pull request #181313 from bryanasdev000/kyverno
kyverno: init at 1.7.0
2022-07-13 11:50:49 -03:00
github-actions[bot]
eb2dfaed06
Merge staging-next into staging 2022-07-13 12:01:56 +00:00
Vladimír Čunát
8169a7fce0
Merge branch 'master' into staging-next 2022-07-13 09:57:41 +02:00
06kellyjac
6fcf2f68e2 semgrep{,-core}: init at 0.103.0 2022-07-13 08:33:54 +01:00
Bryan A. S
32a83dc840 kyverno: init at 1.7.0 2022-07-13 01:16:13 -03:00
zowoq
8b4718e736 zig_0_8_1: remove 2022-07-13 07:46:10 +10:00
zowoq
05285cab55 zls: unstable-2021-06-06 -> 0.9.0 2022-07-13 07:46:10 +10:00
Rick van Schijndel
b0be4224f7
Merge pull request #181157 from amjoseph-nixpkgs/pr/release-cross/explain
release-cross.nix: explain how to run jobs individually
2022-07-12 23:45:17 +02:00
github-actions[bot]
695f489e74
Merge staging-next into staging 2022-07-12 18:02:35 +00:00
Jonas Heinrich
2349dd5cb2 graphia: 2.2 -> 3.0 2022-07-12 10:01:03 -04:00
Artturi
4427b7dfab
Merge pull request #177538 from Artturin/fixcross3 2022-07-12 16:14:46 +03:00
Sandro
3d2b62c78c
Merge pull request #179851 from zendo/media-downloader
media-downloader: init at 2.4.0
2022-07-12 14:58:19 +02:00
Sandro
8785153a13
Merge pull request #180450 from wegank/lp_solve-aarch64-darwin 2022-07-12 14:56:55 +02:00
Artturi
d938f94279
Revert "Revert "release: add tests.packageTestsForChannelBlockers.curl.withCh…" 2022-07-12 15:34:22 +03:00
Artturin
ea8e40cd0a Revert "release: add tests.packageTestsForChannelBlockers.curl.withCheck as a channel blocker"
This reverts commit 7141ab0f0b.

reverting this for now to unblock staging-next

{UNKNOWN}: aggregate job ‘tested’ failed with the error: nixpkgs.tests.packageTestsForChannelBlockers.curl.withCheck.x86_64-linux: does not exist
 at /nix/store/9i92scfqz5idhmjrmjnqhrvjgyydzfns-hydra-perl-deps/lib/perl5/site_perl/5.34.0/Catalyst/Model/DBIC/Schema.pm line 526
2022-07-12 15:00:38 +03:00
Ryan Burns
447e562f81 wibo: init at 0.2.0 2022-07-12 01:24:10 -07:00
github-actions[bot]
aef69f5f34
Merge master into staging-next 2022-07-12 06:01:09 +00:00
zowoq
77b2ff803d terraform-providers: switch to go_1_18 2022-07-12 15:40:49 +10:00
Domen Kožar
d632b9657c
Merge pull request #180091 from thefloweringash/check-case-insensitive-path-conflicts
nixpkgs-basic-release-checks: check for case-insensitive path conflicts
2022-07-11 20:05:04 -05:00
Aaron Andersen
d4862a2236
Merge pull request #180014 from aanderse/kodi.packages.invidious
kodi.packages.invidious: init at 0.1.0+matrix.1
2022-07-12 02:32:38 +02:00
github-actions[bot]
2caa4189ea
Merge master into staging-next 2022-07-12 00:02:27 +00:00
Timothy DeHerrera
0a1978fbe4
Merge pull request #181030 from astro/wander
wander: init at 0.4.1
2022-07-11 15:12:22 -07:00
Adam Joseph
60fbfadd5b add --arg supportedSystems '[builtins.currentSystem]' 2022-07-11 13:21:00 -07:00
Adam Joseph
2da28c610f release-cross.nix: explain how to run jobs individually 2022-07-11 13:13:30 -07:00
github-actions[bot]
5f2ff17a45
Merge master into staging-next 2022-07-11 18:01:16 +00:00
Vladimír Čunát
6940e5b55b
Merge #179329: util-linux: 2.37.4 -> 2.38 (into staging) 2022-07-11 18:13:13 +02:00
Jonas Chevalier
4ce2abd5a8
Merge pull request #180650 from yurrriq/kops-1.24.0
Kops 1.24.0
2022-07-11 17:08:43 +02:00
Kerstin Humm
5a2ed3e8f6
glimpse: add alias notifying about its deletion 2022-07-11 16:00:34 +02:00
Zoey de Souza Pessanha
f69e9bc2cc
nixpacks: init at 0.1.7 (#179932)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-07-11 15:49:34 +02:00
zendo
8dcdd419d1 media-downloader: init at 2.4.0
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
2022-07-11 21:40:01 +08:00
Jonas Heinrich
63d729665c glimpse: Drop package and plugins 2022-07-11 15:05:14 +02:00
github-actions[bot]
de1ff46f80
Merge staging-next into staging 2022-07-11 12:01:55 +00:00
SuperHeroINTJ
3a7dedf779
Merge pull request #179893 from zendo/radioboat
radioboat: init at 0.2.1
2022-07-11 08:55:00 -03:00
Gürkan Gür
bc60496489 pinentry-rofi: init at 2.0.3 2022-07-11 10:56:44 +02:00
Lassulus
965a6d4cb3
Merge pull request #180957 from sikmir/pidgin-telegram 2022-07-11 09:16:49 +02:00
Klemens Nanni
0f72d3c8cc konversation: Update/move to KDE Gear
1.7.7 from october 2020 was the last version before Konversation adapted
the KDE Gear versioning schema, so move and thus update it accordingly.
2022-07-11 14:24:50 +08:00
github-actions[bot]
f98204778b
Merge staging-next into staging 2022-07-11 06:02:06 +00:00
zendo
9104b29c39 radioboat: init at 0.2.1 2022-07-11 12:58:19 +08:00
Astro
15fd45470f wander: init at 0.4.1 2022-07-11 03:31:43 +02:00
Franz Pletz
f904e3562a
Merge pull request #179262 from SuperSandro2000/ntfy-sh
ntfy-sh: 1.26.0 -> 1.27.2
2022-07-11 03:27:04 +02:00
Nick Cao
72259eaf9b
jtag-remote-server: init at unstable-2022-06-09 2022-07-11 09:07:46 +08:00
github-actions[bot]
55e8459a46
Merge staging-next into staging 2022-07-11 00:04:08 +00:00
Michal
190a8c326c
sshs: init at 3.2.0 2022-07-10 22:52:27 +01:00
Rick van Schijndel
993d4345a7
Merge pull request #180922 from smancill/dotenv-linter-darwin
dotenv-linter: fix build on darwin
2022-07-10 20:08:17 +02:00
Rick van Schijndel
7dd0705958
Merge pull request #180923 from smancill/mpd-discord-rpc-darwin
mpd-discord-rpc: fix build on darwin
2022-07-10 20:07:06 +02:00
github-actions[bot]
05798fee88
Merge staging-next into staging 2022-07-10 18:01:55 +00:00
Martin Weinelt
0044b4fa22
Merge pull request #180950 from alyssais/graphite 2022-07-10 17:22:45 +02:00
Théo Zimmermann
3ea8ed7d7e Split out CoqIDE by default when Coq >= 8.14. 2022-07-10 15:49:44 +02:00
Jules Aguillon
49548cace6 ocamlformat_0_23_0: init
New release with no changes to the dependencies.
2022-07-10 15:49:12 +02:00
Sandro
4863bd175e
Merge pull request #180252 from WeebSorceress/trackma-fix
trackma: fix bug with qt build
2022-07-10 14:57:53 +02:00
Martin Weinelt
394025473a
Merge pull request #180958 from fabaff/aladdinconnectclient 2022-07-10 14:05:03 +02:00
github-actions[bot]
4bff9bab6b
Merge staging-next into staging 2022-07-10 12:02:29 +00:00
Janne Heß
05a276adf0
Merge pull request #180404 from helsinki-systems/libressl_3_5_default
libressl: default to 3.5
2022-07-10 13:30:16 +02:00
Martin Weinelt
62c1fa3eb3
Merge pull request #180948 from fabaff/aio-geojson-usgs-earthquakes
python310Packages.aio-geojson-usgs-earthquakes: init at 0.1
2022-07-10 12:21:55 +02:00
Fabian Affolter
6089b88a23 python310Packages.aioaladdinconnect: init 0.1.20 2022-07-10 11:56:17 +02:00
Nikolay Korotkiy
53e959f295
tdlib-purple: init at 0.8.1 2022-07-10 12:55:02 +03:00
Alyssa Ross
1f18d44106
python3.pkgs.graphite_api: remove
Due to lack of maintenance.  It doesn't build, the last upstream
commit was in 2017, and last significant change in Nixpkgs was in
2018.
2022-07-10 09:46:20 +00:00
Alyssa Ross
9f2c91667d
python3.pkgs.influxgraph: remove
Due to lack of maintenance.  Last upstream commit was in 2018, and
graphite_api doesn't build, is also unmaintained upstream, and will
also be removed.
2022-07-10 09:46:18 +00:00
Nikolay Korotkiy
99ebc20c1e
telegram-purple: remove 2022-07-10 12:33:28 +03:00
Alyssa Ross
ada1d87767
python3.pkgs.graphite_beacon: remove
Due to lack of maintenance.  It is not compatible with the default
Python version (due to the tornado 5) dependency, and doesn't look
like it will be any time soon.
2022-07-10 09:17:23 +00:00
Matthias Beyer
a2d05bac40 cargo-public-api: init 0.12.2
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2022-07-10 11:10:59 +02:00
Fabian Affolter
9ac4852b3d python310Packages.aio-geojson-usgs-earthquakes: init at 0.1 2022-07-10 11:08:47 +02:00
github-actions[bot]
4fa8151b9f
Merge staging-next into staging 2022-07-10 06:01:52 +00:00
Tobias Stenzel
8adfc29685
myst-docutils: init at 0.17.2 (#171710) 2022-07-09 22:53:18 -05:00
Sebastián Mancilla
6375863e93 mpd-discord-rpc: fix build on darwin
Add missing Security framework as input.
2022-07-09 23:49:22 -04:00
Sebastián Mancilla
bc776c4d36 dotenv-linter: fix build on darwin
Add missing Security framework as input.
2022-07-09 23:43:55 -04:00
Mario Rodas
d603763bcd
Merge pull request #180130 from magnetophon/faust
Faust: faust: 2.40.0 -> 2.41.1 faustlive: 2.5.10 -> 2.5.11

Closes #180601
2022-07-09 22:40:12 -05:00
github-actions[bot]
12be7ca6e2
Merge staging-next into staging 2022-07-10 00:03:45 +00:00
WeebSorceress
ad36639f47
trackma: fix bug with qt option 2022-07-09 20:58:01 -03:00
SuperHeroINTJ
00faf8c1a8
Merge pull request #179781 from identinet/datree_0.15.22-1.5.20
datree: 0.15.22 -> 1.5.25
2022-07-09 19:18:25 -03:00
Rick van Schijndel
c9d04fce5f
Merge pull request #180299 from DAlperin/add-bun
bun: init at 0.1.1
2022-07-09 22:50:51 +02:00
Jan Christoph Ebersbach
f9de76b5e2
datree: 0.15.22 -> 1.5.25 2022-07-09 20:27:21 +02:00
Dov Alperin
63a859c835
bun: init at 0.1.1 2022-07-09 14:10:09 -04:00
github-actions[bot]
ed2918e1af
Merge staging-next into staging 2022-07-09 18:01:55 +00:00
Azat Bahawi
26329f9ae8 xnotify: init at unstable-2022-02-18 2022-07-09 10:20:10 -07:00
Kirill A. Korinsky
f41fc22111
prl-tools: 12.2.1-41615 -> 17.1.4-51567
Install Parallel Tools updated for version 17 of Parallels for macOS. This
fixes clipboard sharing, so that copy and paste works between the host
macOS and the guest NixOS VM. Support for guests on M1 Apple Silicon-based
Macs (aarch64-linux) is also added.

Co-authored-by: Paul Smith <paulsmith@gmail.com>
Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com>
2022-07-09 14:43:27 +02:00
Vincent Laporte
d4cb9de838 ocamlPackages.nocrypto: remove at 0.5.4
ocamlPackages.wodan: mark as broken
2022-07-09 14:24:02 +02:00
Vincent Laporte
f852977090 ocamlPackages.noise: remove at 0.2.0 2022-07-09 14:24:02 +02:00
github-actions[bot]
449ceff4fa
Merge staging-next into staging 2022-07-09 12:01:54 +00:00
Anderson Torres
cdc8b2b62a
Merge pull request #179500 from 0xd61/submit/gf
gf: init at unstable-2022-06-22
2022-07-09 08:36:41 -03:00
Fabian Affolter
1c03d937e0
Merge pull request #180787 from fabaff/types-docutils-bump
python310Packages.types-docutils: 0.18.3 -> 0.19.0
2022-07-09 11:09:54 +02:00
github-actions[bot]
72c9a2a647
Merge staging-next into staging 2022-07-09 06:01:57 +00:00
Martin Weinelt
25db5d667c
Merge pull request #180698 from NixOS/home-assistant 2022-07-09 03:00:24 +02:00
Anderson Torres
d0490bc9b8
Merge pull request #180271 from azahi/xprompt
xprompt: init at 2.5.0
2022-07-08 21:25:21 -03:00
Anderson Torres
e7c3f2b4de
Merge pull request #180535 from wegank/nvc-init
nvc: init at 1.6.2
2022-07-08 21:21:59 -03:00
Martin Weinelt
44932cf74c
python3Packages.atomicwrites-homeassistant: init at 1.0.4 2022-07-09 02:21:24 +02:00
github-actions[bot]
5c6643bcdd
Merge staging-next into staging 2022-07-09 00:02:42 +00:00
Fabian Affolter
ae42114134 python310Packages.rstcheck-core: init at 1.0.2 2022-07-09 01:25:28 +02:00
Soham S Gumaste
1087880e0b
ocs-url: init at 3.1.0
This package is used by DE store pages to one click install themes/fonts and other assets.

Signed-off-by: Soham S Gumaste <sgumas2@uic.edu>
2022-07-08 13:49:16 -05:00
Jan Tojnar
819fe6a918 Merge branch 'staging-next' into staging
; Conflicts:
;	pkgs/data/icons/papirus-icon-theme/default.nix
2022-07-08 20:21:39 +02:00
Peder Bergebakken Sundt
50ba995a1c polaris: init at 0.13.5
Polaris is a self-hosted music streaming server, with a
web and android frontend. The web frontend is included.
https://github.com/agersant/polaris

Polaris-web uses an odd versioning schema: 'build-X'. We reuse
the upstream tags. Polaris CI releases automatically bundle the
latest available version of polaris-web, however 'polaris' has seen
no release since april 2021, while polaris-web has had 5 version
bumps since. Currently we package the version of polaris-web
bundled with polaris on github. Once the newer versions are tested
we might upgrade.
2022-07-08 12:27:48 -04:00
Kylie McClain
89fe43fd95 s6-portable-utils-man-pages: init at 2.2.5.0.1 2022-07-08 13:57:48 +00:00
github-actions[bot]
b9940c5d67
Merge staging-next into staging 2022-07-08 12:02:16 +00:00
toonn
80ffac4097
Merge pull request #176661 from reckenrode/apple-sdk-11-x86_64
apple_sdk_11_0: make available for use on x86_64-darwin
2022-07-08 12:28:51 +02:00
Eric Bailey
28f8307a26 kops: 1.23.2 -> 1.24.0 2022-07-08 01:44:23 -05:00
github-actions[bot]
2b26752329
Merge staging-next into staging 2022-07-08 06:01:53 +00:00
github-actions[bot]
f08a2153bf
Merge master into staging-next 2022-07-08 06:01:15 +00:00
Weijia Wang
22c2fef365 nvc: init at 1.6.2 2022-07-08 07:22:45 +02:00
Anderson Torres
11b6b35b90
Merge pull request #179179 from viraptor/reaper-pw
reaper: add support for pipewire-jack
2022-07-08 01:25:47 -03:00
Anderson Torres
69ec06c700
Merge pull request #180051 from azahi/fetchit
fetchit: init at 0.0.1
2022-07-07 22:30:23 -03:00
Anderson Torres
a5884d468a
Merge pull request #180132 from catap/wipefreespace
wipefreespace: init at 2.5
2022-07-07 22:26:28 -03:00
Stanisław Pitucha
134c7be40b reaper: add support for pipewire-jack 2022-07-08 11:22:58 +10:00
Anderson Torres
b7fc6f9ffe
Merge pull request #180047 from azahi/zint
zint: init at 2.11.0
2022-07-07 21:56:25 -03:00
Lassulus
1e0fdf9b8e
Merge pull request #172379 from techknowlogick/cirrus-cli-init
cirrus-cli: init at 0.81.1
2022-07-08 02:25:54 +02:00
github-actions[bot]
527a304ac4
Merge staging-next into staging 2022-07-08 00:03:17 +00:00
github-actions[bot]
e1123916d6
Merge master into staging-next 2022-07-08 00:02:37 +00:00
Sandro
f49fe4a120
Merge pull request #170464 from lilyinstarlight/pkg/open-stage-control 2022-07-07 22:38:41 +02:00
Sandro
2264184667
Merge pull request #176272 from necessarily-equal/booklet-imposer
bookletimposer: add new package
2022-07-07 21:55:51 +02:00
Robert Scott
e0c66dad5c
Merge pull request #180548 from veprbl/pr/blender_darwin_fix_3
blender: fix on darwin
2022-07-07 20:52:00 +01:00
Sandro
47c8a95f8e
Merge pull request #180538 from wegank/wcpg-init
wcpg: init at 0.9
2022-07-07 21:51:35 +02:00
Sandro
33d9482f14
Merge pull request #176164 from sikmir/mod_mbtiles
apacheHttpdPackages.mod_mbtiles: init at 2022-05-25
2022-07-07 21:48:54 +02:00
Sandro
63ae1a277e
Merge pull request #180556 from kilimnik/master 2022-07-07 21:31:45 +02:00
kilimnik
a508339bc6 protoc-gen-connect-go: init at 0.1.1 2022-07-07 21:01:04 +02:00
Artturin
c5d7fc0b3c python310Packages.pygobject3: fix cross 2022-07-07 21:31:10 +03:00
Artturin
2cbce6b012 mesonEmulatorHook: check if the target binaries can be executed
this prevents having to bring in the emulator when compiling e.g. pkgsStatic
2022-07-07 21:29:53 +03:00
Vincent Laporte
26a6c659f0 ocamlPackages.happy-eyeballs: init at 0.1.3 2022-07-07 20:29:09 +02:00
Artturin
a83d2f7c91 gobject-introspection: cross improvements
gobject-introspection: copy $dev/share/gobj.../tests when cross-compiling

gobject-introspection: add giscanner-ignore-error-return-codes-from-ldd-wrapper patch

polkit-aarch64-unknown-linux-gnu> [102/104] Generating src/polkitagent/PolkitAgent-1.0.gir with a custom command
polkit-aarch64-unknown-linux-gnu> FAILED: src/polkitagent/PolkitAgent-1.0.gir
polkit-aarch64-unknown-linux-gnu> <storepath>-gobject-introspection-wrapped-1.72.0-dev/bin/g-ir-scanner --no-libtool --namespace=PolkitAgent --nsversion=1.0 --warn-all --output src/polkitagent/PolkitAgent-1.0.gir --c-include=polkitagent/polkitagent.h -
D_POLKIT_AGENT_COMPILATION -D_POLKIT_COMPILATION -I/build/source/src/polkitagent -I/build/source/build/src/polkitagent -I/build/source/. -I/build/source/build/. -I/build/source/src/. -I/build/source/build/src/. --filelist=/build/source/build/src/polkitagent/libpolkit-agent-1.so.0.0.0
.p/PolkitAgent_1.0_gir_filelist --include=Gio-2.0 --include-uninstalled=src/polkit/Polkit-1.0.gir --pkg-export=polkit-agent-1 --cflags-begin -DHAVE_CONFIG_H -I/build/source/. -I/build/source/build/. -I/build/source/src/. -I/build/source/build/src/. -I/nix/store/lqncny8acp6hkclsgbfnrb
65i9hscsmn-expat-aarch64-unknown-linux-gnu-2.4.8-dev/include -I<storepath>-glib-aarch64-unknown-linux-gnu-2.72.2-dev/include/gio-unix-2.0 -I<storepath>-glib-aarch64-unknown-linux-gnu-2.72.2-dev/include -I/nix/store/qm1wa
x4c7sgf5h3b6dhspxb5miayjyc9-glib-aarch64-unknown-linux-gnu-2.72.2-dev/include/glib-2.0 -I<storepath>-glib-aarch64-unknown-linux-gnu-2.72.2/lib/glib-2.0/include -I<storepath>-gobject-introspection-aarch64-unknown-linux-gn
u-1.72.0-dev/include/gobject-introspection-1.0 --cflags-end --add-include-path=<storepath>-gobject-introspection-aarch64-unknown-linux-gnu-1.72.0-dev/share/gir-1.0 --add-include-path=/build/source/build/src/polkit -L/build/source/build/src/polkitagent
--library polkit-agent-1 -L/build/source/build/src/polkit -L<storepath>-expat-aarch64-unknown-linux-gnu-2.4.8/lib --extra-library=expat -L<storepath>-glib-aarch64-unknown-linux-gnu-2.72.2/lib --extra-library=gio-2.0 --ex
tra-library=gobject-2.0 --extra-library=glib-2.0 -L<storepath>-gobject-introspection-aarch64-unknown-linux-gnu-1.72.0/lib --extra-library=girepository-1.0 --sources-top-dirs /build/source/subprojects/ --sources-top-dirs /build/source/build/subprojects/
polkit-aarch64-unknown-linux-gnu> g-ir-scanner: link: aarch64-unknown-linux-gnu-gcc -o /build/source/build/tmp-introspectzp2ldkyk/PolkitAgent-1.0 /build/source/build/tmp-introspectzp2ldkyk/PolkitAgent-1.0.o -L. -Wl,-rpath,. -Wl,--no-as-needed -L/build/source/build/src/polkitagent -Wl
,-rpath,/build/source/build/src/polkitagent -L/build/source/build/src/polkit -Wl,-rpath,/build/source/build/src/polkit -L<storepath>-expat-aarch64-unknown-linux-gnu-2.4.8/lib -Wl,-rpath,<storepath>-expat-aarch64-unknown-
linux-gnu-2.4.8/lib -L<storepath>-glib-aarch64-unknown-linux-gnu-2.72.2/lib -Wl,-rpath,<storepath>-glib-aarch64-unknown-linux-gnu-2.72.2/lib -L<storepath>-gobject-introspection-aarch64-unk
nown-linux-gnu-1.72.0/lib -Wl,-rpath,<storepath>-gobject-introspection-aarch64-unknown-linux-gnu-1.72.0/lib -lpolkit-agent-1 -lexpat -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lgirepository-1.0 -L<storepath>-glib-aarch64-unknow
n-linux-gnu-2.72.2/lib -lgio-2.0 -lgobject-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0
polkit-aarch64-unknown-linux-gnu> Traceback (most recent call last):
polkit-aarch64-unknown-linux-gnu>   File "<storepath>-gobject-introspection-wrapped-1.72.0-dev/bin/.g-ir-scanner-wrapped", line 99, in <module>
polkit-aarch64-unknown-linux-gnu>     sys.exit(scanner_main(sys.argv))
polkit-aarch64-unknown-linux-gnu>   File "<storepath>-gobject-introspection-wrapped-1.72.0/lib/gobject-introspection/giscanner/scannermain.py", line 646, in scanner_main
polkit-aarch64-unknown-linux-gnu>     shlibs = create_binary(transformer, options, args)
polkit-aarch64-unknown-linux-gnu>   File "<storepath>-gobject-introspection-wrapped-1.72.0/lib/gobject-introspection/giscanner/scannermain.py", line 471, in create_binary
polkit-aarch64-unknown-linux-gnu>     shlibs = resolve_shlibs(options, binary, options.libraries)
polkit-aarch64-unknown-linux-gnu>   File "<storepath>-gobject-introspection-wrapped-1.72.0/lib/gobject-introspection/giscanner/shlibs.py", line 179, in resolve_shlibs
polkit-aarch64-unknown-linux-gnu>     _resolve_non_libtool(options, binary, non_libtool))
polkit-aarch64-unknown-linux-gnu>   File "<storepath>-gobject-introspection-wrapped-1.72.0/lib/go
bject-introspection/giscanner/shlibs.py", line 112, in _resolve_non_libtool
polkit-aarch64-unknown-linux-gnu>     output = subprocess.check_output(args)
polkit-aarch64-unknown-linux-gnu>   File "<storepath>-python3-3.10.5/lib/python3.10/subprocess.py", line 420, in check_output
polkit-aarch64-unknown-linux-gnu>     return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
polkit-aarch64-unknown-linux-gnu>   File "<storepath>-python3-3.10.5/lib/python3.10/subprocess.py", line 524, in run
polkit-aarch64-unknown-linux-gnu>     raise CalledProcessError(retcode, process.args,
polkit-aarch64-unknown-linux-gnu> subprocess.CalledProcessError: Command '['<storepath>-prelink-unstable-2019-06-24/bin/prelink-rtld', '/build/source/build/tmp-introspectzp2ldkyk/PolkitAgent-1.0']' returned non-zero exit status 127.
polkit-aarch64-unknown-linux-gnu> [103/104] Generating src/polkit/Polkit-1.0.typelib with a custom command
polkit-aarch64-unknown-linux-gnu> ninja: build stopped: subcommand failed.

exit status 127

gobject-introspection: this should fix pkgsMusl pkgsStatic

by not putting `/nix/store/iw35xj69w190w7vw17l8mac8srg0vpyz-gobject-introspection-static-x86_64-unknown-linux-musl-1.72.0.drv`

in their dependency tree when gobject-introspection is in
nativeBuildInputs ex .#pkgsStatic.libjxl

gobject-introspection: pc file: use binaries from path instead of a abs path to them

fixes issues in networkmanager and some other packages
```
gi._error.GError: g-invoke-error-quark: Could not locate g_option_error_quark: /nix/store/...-glib-aarch64-unknown-linux-gnu-2.72.2/lib/libglib-2.0.so.0:
cannot open shared object file: No such file or directory (1)
```

see comment

gobject-introspection: propagate gobject-introspection-unwrapped in wrapper

with this it is no longer needed to put gobject-introspection in
buildInputs in addition to nativeBuildInputs
2022-07-07 21:18:23 +03:00
Martin Weinelt
1c4ee228e2 Merge remote-tracking branch 'origin/staging-next' into staging 2022-07-07 19:20:35 +02:00
Nikolay Korotkiy
db3568499d
apacheHttpdPackages.mod_mbtiles: init at 2022-05-25 2022-07-07 20:04:25 +03:00
Vladimír Čunát
c869aa9ac9
Merge branch 'master' into staging-next
The purpose is to integrate the usual Haskell rebuild.
2022-07-07 18:50:02 +02:00
Pavol Rusnak
98472c0467
Merge pull request #180269 from prusnak/electron
electron_19: init at 19.0.7
2022-07-07 18:23:41 +02:00
Antoine Fontaine
4950cb01e5 bookletimposer: init at 0.3.1 2022-07-07 18:11:00 +02:00
Weijia Wang
abe756d691 wcpg: init at 0.9 2022-07-07 18:05:54 +02:00
sternenseemann
9fbc67d63e opensoldat: rename from soldat-unstable
Upstream project was [renamed] which removes the ambiguity with
Soldat 1.7 as well as Soldat 2.

[renamed]: 0fec3d86af
2022-07-07 17:58:03 +02:00
Dmitry Kalinkin
007c4341fe
blender: fix on darwin 2022-07-07 11:57:28 -04:00
Lily Foster
1b1684c21f open-stage-control: init at 1.17.0 2022-07-07 10:27:13 -04:00
Sandro
e13bbaeb94
Merge pull request #154572 from 06kellyjac/fsverity-utils 2022-07-07 16:04:08 +02:00
Sandro
ed474bf685
Merge pull request #176139 from jsoo1/jsoo1/limitcpu 2022-07-07 15:53:23 +02:00
Martin Weinelt
a3c7cbb2b8
Merge pull request #180400 from NixOS/home-assistant 2022-07-07 15:22:33 +02:00
Pavol Rusnak
715b7691f2
electron_19: init at 19.0.7 2022-07-07 14:53:36 +02:00
Martin Weinelt
6802686d69
python3Packages.pyialarmxr-homeassistant: drop
Was part of the ialarm_xr component of home-assistant, which was removed
in the 2022.7.0 release.
2022-07-07 14:50:21 +02:00
Sandro
de9a1f4e81
Merge pull request #180039 from astro/openwebrx 2022-07-07 14:48:48 +02:00
Jan Tojnar
d910a8b8a5 Merge branch 'staging-next' into staging
; Conflicts:
;	pkgs/data/icons/zafiro-icons/default.nix
2022-07-07 14:24:09 +02:00
Dennis Gosnell
b2b431c2f1
Merge pull request #179211 from NixOS/haskell-updates
haskellPackages: update stackage and hackage
2022-07-07 21:17:59 +09:00
Weijia Wang
a64e151d26 lp_solve: fix build on aarch64-darwin 2022-07-07 09:59:39 +02:00
github-actions[bot]
a9e0051c3f
Merge master into staging-next 2022-07-07 06:01:20 +00:00
Aaron L. Zeng
4f6ddfdd23 Add Jane Street ocaml packages version 0.15
- ocamlPackages.tls*: 0.15.2 -> 0.15.3
- ocamlPackages.bistro: unstable-2021-11-13 -> unstable-2022-05-07
- ocamlPackages.phylogenetics: 0.1.0 -> unstable-2022-05-06
2022-07-07 00:32:11 -04:00
Anderson Torres
06fa4a5bc2
Merge pull request #179933 from aacebedo/papirus-folders
papirus-folders: init at 1.12.0
2022-07-06 21:48:45 -03:00
github-actions[bot]
5dcf079fac
Merge master into haskell-updates 2022-07-07 00:15:12 +00:00
github-actions[bot]
c0b6f4c121
Merge master into staging-next 2022-07-07 00:02:29 +00:00
Randy Eckenrode
d8f71776ff
apple_sdk_11_0: fix build on x86_64-darwin and expose as attribute 2022-07-06 19:41:17 -04:00
Astro
10565fccde m17-cxx-demod: init at 2.3, add to nixos/openwebrx 2022-07-07 00:41:30 +02:00
ajs124
610e5783d0 wasm-pack: pin to libressl 3.4 2022-07-07 00:12:08 +02:00
ajs124
2d11af56f5 ovftool: pin to libressl 3.4 2022-07-07 00:09:56 +02:00
ajs124
6f96422524 fdbPackages: pin to libressl 3.4 2022-07-07 00:09:09 +02:00
ajs124
9b62e0e7b1 acme-client: pin to libressl 3.4 2022-07-07 00:06:12 +02:00
ajs124
59aa793664 libressl: switch default to 3.5 2022-07-06 23:41:12 +02:00
techknowlogick
f33e04326c cirrus-cli: init at 0.81.1 2022-07-06 17:35:33 -04:00
Thiago Kenji Okada
03f42a04ff
Merge pull request #179942 from WeebSorceress/adl
adl: init at 3.0.1
2022-07-06 22:18:02 +01:00
zowoq
b7eb3285b3 railcar, nixos/railcar: remove
Upstream repo is archived and hasn't had any commits since 2018, isn't packaged anywhere else apart from AUR.
2022-07-07 07:16:58 +10:00
ajs124
2837f807c9
Merge pull request #180066 from helsinki-systems/rem/nodejs-12_x
nodejs-12_x: remove
2022-07-06 23:09:28 +02:00
7c6f434c
0cd1b87d0e
Merge pull request #179949 from marsam/update-sbcl
sbcl: 2.2.4 -> 2.2.6
2022-07-06 20:59:41 +00:00
superherointj
c0be9df414
Merge pull request #180220 from Mindavi/libwebsockets/4.3.2
libwebsockets: 4.3.1 -> 4.3.2
2022-07-06 17:30:08 -03:00
Bart Brouns
1271b83b63 faust: 2.40.0 -> 2.41.1 2022-07-06 22:08:32 +02:00
Rick van Schijndel
bcd5ad6d83 libwebsockets: remove generic function, format
Formatted with nixpkgs-fmt.
2022-07-06 22:02:40 +02:00
WeebSorceress
a885d43d61
adl: init at 3.0.1 2022-07-06 17:01:53 -03:00
sternenseemann
e233468d9f haskellPackages.purescript: adjust for 0.15.4
0.15.4 supports GHC 9.0 and aeson 2.0, as well as the latest bower-json
version, but the purescript-{a,c}st packages don't sadly.
2022-07-06 21:45:09 +02:00
Martin Weinelt
98e651e891
python3Packages.chacha20poly1305-reusable: init at 0.0.4 2022-07-06 21:38:42 +02:00
Sandro
14445422a6
Merge pull request #179518 from XYenon/feat/go-graft
go-graft: init at 0.2.6
2022-07-06 21:19:05 +02:00
sternenseemann
ff494fa028 ocamlPackages.hxd: 0.3.1 -> 0.3.2
https://github.com/dinosaure/hxd/releases/tag/v0.3.2
2022-07-06 21:00:03 +02:00
John Soo
44a2177997
limitcpu: init at 2.7
Renamed from cpulimit.
2022-07-06 11:09:07 -07:00
github-actions[bot]
f17eb60119
Merge master into staging-next 2022-07-06 18:01:15 +00:00
Azat Bahawi
c39e206811 linux_logo: init at 6.0 2022-07-06 13:24:49 -03:00
Artturi
fb6816eae3
Merge pull request #178869 from Artturin/curlies 2022-07-06 17:30:45 +03:00
Michael Adler
4622c4e103 goda: init at 0.5.1 2022-07-06 11:13:04 -03:00
ajs124
e332ad7a33 tagainijisho: 1.0.3 -> 1.2.0
qt4 -> qt5
2022-07-06 15:53:15 +02:00
Sandro
50cfe85316
Merge pull request #176144 from hardselius/jsonnet-language-server-0.7.2
jsonnet-language-server: init at 0.7.2
2022-07-06 14:36:36 +02:00
github-actions[bot]
5a3eeeb9bb
Merge staging-next into staging 2022-07-06 12:02:07 +00:00
github-actions[bot]
fc60f033e5
Merge master into staging-next 2022-07-06 12:01:31 +00:00
Kirill A. Korinsky
9573c61a7c
wipefreespace: init at 2.5 2022-07-06 13:22:08 +02:00
rewine
8ef7523c8e
pineapple-pictures: init at 0.6.1 (#178583)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-07-06 11:28:26 +02:00
Sandro
1fe9c408a2
Merge pull request #179939 from WeebSorceress/frece
frece: init at 1.0.6
2022-07-06 10:44:24 +02:00
Azat Bahawi
bf40759a35
zint: init at 2.11.0
Fixes: #176559
2022-07-06 11:17:55 +03:00
Azat Bahawi
234be397d6
xprompt: init at 2.5.0 2022-07-06 11:11:53 +03:00
Sergei Trofimovich
195c7143d9
Merge pull request #180146 from trofi/update-vxl-away-from-gcc6
vxl: 1.17.0-nix1 -> 3.3.2
2022-07-06 08:11:06 +01:00
Sergei Trofimovich
79f0470dc2
Merge pull request #180090 from trofi/drop-cuda-from-xmr-stak
xmr-stak: drop gcc6 requrement (and cuda support)
2022-07-06 08:10:15 +01:00
Sergei Trofimovich
d3c3db6a08
Merge pull request #180288 from trofi/mars-fix-libtdc++-clash
mars: fix build on gcc-10
2022-07-06 08:09:45 +01:00
Alexandre Acebedo
2126944e09 papirus-folders: init at 1.12.0 2022-07-06 08:21:06 +02:00
github-actions[bot]
7c1c19b4df
Merge staging-next into staging 2022-07-06 06:02:06 +00:00
github-actions[bot]
f475dc6eb4
Merge master into staging-next 2022-07-06 06:01:27 +00:00
AndersonTorres
c2c8e8fdd2 xosview: init at 1.23 2022-07-06 01:28:11 -03:00
AndersonTorres
4066f82a4d all-packages.nix: cosmetic formatting of some comments 2022-07-06 01:28:11 -03:00
github-actions[bot]
a56995cf80
Merge staging-next into staging 2022-07-06 00:02:58 +00:00
github-actions[bot]
c505b8a0b8
Merge master into staging-next 2022-07-06 00:02:20 +00:00
Sergei Trofimovich
336cc1683a mars: fix build on gcc-10
Without the change build fails due to gcc-11/gcc-10 libstdc++ mix:

    [100%] Linking CXX executable ../../marsshooter
    ld: .../libsfml-graphics.so.2.5.1: undefined reference to `std::__throw_bad_array_new_length()@GLIBCXX_3.4.29'
    collect2: error: ld returned 1 exit status
2022-07-05 23:43:14 +01:00
Thiago Kenji Okada
770e59d084
Merge pull request #179906 from fortuneteller2k/discord-fix-override
discord: fix override
2022-07-05 21:24:55 +01:00
Ashish SHUKLA
183b236eef nebula: 1.5.2 -> 1.6.0 2022-07-05 17:08:40 -03:00
wozeparrot
a2012c49fc
hyprpaper: init at unstable-2022-07-04 (#180192) 2022-07-05 22:29:34 +03:00
fortuneteller2k
af7323d1a8 discord: fix override 2022-07-05 18:47:41 +00:00
Daniel Glinka
08af758396 gf: init at unstable-2022-06-22 2022-07-05 08:14:12 -04:00
github-actions[bot]
14ba82064f
Merge staging-next into staging 2022-07-05 12:02:49 +00:00
github-actions[bot]
0c17a445aa
Merge master into staging-next 2022-07-05 12:02:09 +00:00
Martin Hardselius
9dc9efefc4
jsonnet-language-server: init at 0.7.2 2022-07-05 13:28:39 +02:00
oxalica
cce5385de5 logitech-udev-rules: make it an alias of solaar.udev 2022-07-05 14:57:08 +08:00
Fabian Affolter
6300cde545
Merge pull request #180142 from 06kellyjac/kubescape
kubescape: 2.0.158 -> 2.0.160
2022-07-05 08:21:14 +02:00
Fabian Affolter
ce1a6a9fc9
Merge pull request #180137 from fabaff/dulwich-bump
python310Packages.dulwich: 0.20.43 -> 0.20.44, dvc: 2.10.2 -> 2.12.0
2022-07-05 08:11:20 +02:00
github-actions[bot]
4742aa3457
Merge staging-next into staging 2022-07-05 06:02:01 +00:00
github-actions[bot]
c0b8d5d7b9
Merge master into staging-next 2022-07-05 06:01:19 +00:00
Anderson Torres
0c873dc3a2
Merge pull request #179888 from DamienCassou/offpunk
offpunk: init at 1.4
2022-07-04 22:17:56 -03:00
github-actions[bot]
a2c59bc13f
Merge staging-next into staging 2022-07-05 00:02:54 +00:00
github-actions[bot]
2b746ce766
Merge master into staging-next 2022-07-05 00:02:22 +00:00
zowoq
6a9e4bd161 vimv-rs: init at 1.7.5 2022-07-05 09:16:30 +10:00
Fabian Affolter
29a77fc1ad python310Packages.dvc-data: init at 0.0.18 2022-07-04 20:16:02 +02:00
Fabian Affolter
d9d731345e python310Packages.dvc-objects: init at 0.0.18 2022-07-04 20:16:02 +02:00
Sergei Trofimovich
df304cc773 vxl: 1.17.0-nix1 -> 3.3.2
While at it drop pin to gcc6 and outdated jpeg.
2022-07-04 18:27:14 +01:00
06kellyjac
17a62d74b7 kubescape: 2.0.158 -> 2.0.160 2022-07-04 17:32:11 +01:00
ajs124
2674894432 nodejs-12_x: remove 2022-07-04 15:33:59 +02:00
ajs124
126bd386d8 cryptpad: remove 2022-07-04 15:33:59 +02:00
alyaeanyx
35278579b0
friture: pin python to 3.9 2022-07-04 14:21:46 +02:00
github-actions[bot]
03ce3f8c08
Merge staging-next into staging 2022-07-04 12:12:04 +00:00
github-actions[bot]
33b3f971a7
Merge master into staging-next 2022-07-04 12:11:13 +00:00
tricktron
ac8fadc7f3
colima: 0.4.2 -> 0.4.4 (#179522)
* colima: use updated Makefile in build and install phases

* colima: use lima-unwrapped

* colima: fix dynamic version

* colima: 0.4.2 -> 0.4.3

* colima: delete .git folder in postfetch when `leaveDotGit = true`

Otherwise it may lead to non-deterministic behaviour.

Co-authored-by: j-k <dev@j-k.io>

* colima: do not override default buildGoModule phases

The colima Makefile does more or less the same as the `buildGoModule`
implementation. Instead of overriding it and using the Makefile
directly, we reproduce the behaviour desired behaviour by customising
env variables, e.g. `ldflags` and `subPackages`.

Co-authored-by: j-k <dev@j-k.io>

* colima: use `buildGoModule = buildGo118Module;`

Co-authored-by: j-k <dev@j-k.io>

* colima: update meta.description

Co-authored-by: j-k <dev@j-k.io>

* colima: set `CGO_ENABLED = 1` to make VPN connections work

See https://github.com/abiosoft/colima/issues/358

* colima: 0.4.3 -> 0.4.4

* colima: define all ldflags in preConfigure

Co-authored-by: Atemu <Atemu@users.noreply.github.com>

* colima: add version test

* colima: add meta.mainProgram and meta.platforms

* colima: remove unused runCommand input

Co-authored-by: j-k <dev@j-k.io>

* colima: cleanup meta

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

* colima: drop meta.platforms

because we use the default value of `platforms.darwin ++
platforms.linux`

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Atemu <Atemu@users.noreply.github.com>

* Update pkgs/applications/virtualization/colima/default.nix

Co-authored-by: j-k <dev@j-k.io>
Co-authored-by: Atemu <Atemu@users.noreply.github.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-07-04 13:28:02 +02:00
Sandro
025f00750d
Merge pull request #179809 from sudosubin/check-jsonschema
check-jsonschema: init at 0.16.2
2022-07-04 13:13:43 +02:00
Sandro
aac9ff65da
Merge pull request #179992 from ranfdev/edgedb
edgedb: init at unstable-2022-06-27
2022-07-04 12:52:03 +02:00
Juan Ibiapina
62e5acd0a7
ruby: Expose generic builder (#173390)
To avoid duplicating the ruby compilation code, this change exposes two
functions `mkRubyVersion` and `mkRuby`, which can be used in an overlay
to build any past or current ruby version.

An example overlay:
```nix
self: super:

{
  ruby_2_7_6 = super.mkRuby {
    version = super.mkRubyVersion "2" "7" "6" "";
    sha256 = "042xrdk7hsv4072bayz3f8ffqh61i8zlhvck10nfshllq063n877";
  };

  ruby_3_1_2 = super.mkRuby {
    version = super.mkRubyVersion "3" "1" "2" "";
    sha256 = "0gm84ipk6mrfw94852w5h7xxk2lqrxjbnlwb88svf0lz70933131";
  };
}
```
2022-07-04 11:57:06 +02:00
Andrew Childs
cb730cf239 nixpkgs-basic-release-checks: check for case-insensitive path conflicts 2022-07-04 18:30:36 +09:00
Sergei Trofimovich
a5ce71d4e8 xmr-stak: drop gcc6 requrement (and cuda support)
[ 86%] Building CXX object CMakeFiles/xmrstak_opencl_backend.dir/xmrstak/backend/amd/minethd.cpp.o
    nvcc fatal   : Unsupported gpu architecture 'compute_30'
    CMake Error at xmrstak_cuda_backend_generated_cuda_extra.cu.o.Release.cmake:220 (message):
      Error generating
      /build/source/build/CMakeFiles/xmrstak_cuda_backend.dir/xmrstak/backend/nvidia/nvcc_code/./xmrstak_cuda_backend_generated_cuda_extra.cu.o
    nvcc fatal   : Unsupported gpu architecture 'compute_30'
    make[2]: *** [CMakeFiles/xmrstak_cuda_backend.dir/build.make:84: CMakeFiles/xmrstak_cuda_backend.dir/xmrstak/backend/nvidia/nvcc_code/xmrstak_cuda_backend_generated_cuda_extra.cu.o] Error 1

CUDA support is broken for a while. Let's drop it along with gcc6 requirement.
2022-07-04 10:27:24 +01:00
Sergei Trofimovich
2e37f787c9
Merge pull request #180086 from trofi/fix-archimedes-off-gcc6
archimedes: use latest toolchain, not gcc-6
2022-07-04 08:49:35 +01:00
Sergei Trofimovich
8aaed36df3 archimedes: use latest toolchain, not gcc-6
Without the change archimedes fails to build with latest toolchains as:

    ld: archimedes.c:(.text+0xdac7): undefined reference to `rnd'
    ld: archimedes.c:(.text+0xdeab): undefined reference to `rnd'
    ld: archimedes.c:(.text+0xdf13): undefined reference to `rnd'
    ld: archimedes.c:(.text+0xe3ef): undefined reference to `rnd'
    ld: archimedes.o:archimedes.c:(.text+0xe456): more undefined references to `rnd' follow
    ld: archimedes.o: in function `EMC':
    archimedes.c:(.text+0xf11b): undefined reference to `creation'
    ld: archimedes.c:(.text+0xf5f5): undefined reference to `creation'
    ld: archimedes.c:(.text+0xf826): undefined reference to `creation'
    ld: archimedes.c:(.text+0xf9ce): undefined reference to `creation'

The change happens to fix build against clang as well.
2022-07-04 08:20:07 +01:00
Vincent Laporte
e69aee3280 ocamlPackages.io-page: 2.3.0 → 2.4.0
ocamlPackages.mirage-block: 2.0.1 → 3.0.0
ocamlPackages.mirage-block-ramdisk: disable tests
ocamlPackages.mirage-block-unix: 2.12.1 → 2.14.1
ocamlPackages.mirage-unix: 4.0.0 → 4.0.1
ocamlPackages.vchan: 6.0.0 → 6.0.1
ocamlPackages.wodan-unix: mark as broken
2022-07-04 09:10:59 +02:00