Commit graph

73960 commits

Author SHA1 Message Date
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
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
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
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
06kellyjac 17a62d74b7 kubescape: 2.0.158 -> 2.0.160 2022-07-04 17:32:11 +01: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
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
Rick van Schijndel c14d2c45e9
Merge pull request #178145 from AtilaSaraiva/deepwave
deepwave: init at 0.0.11
2022-07-04 08:35:33 +02:00
github-actions[bot] d0d975c8c9
Merge staging-next into staging 2022-07-04 00:05:36 +00:00
github-actions[bot] a653bbaea6
Merge master into staging-next 2022-07-04 00:05:02 +00:00
Ryan Burns 3854cf7eeb
Merge pull request #173127 from aidalgol/teensy-udev-rules
teensy-udev-rules: init at version 2022-05-15
2022-07-03 14:05:07 -07:00
Damien Cassou 31c1463343
offpunk: init at 1.4 2022-07-03 20:59:27 +02:00
github-actions[bot] 116e8e939b
Merge staging-next into staging 2022-07-03 18:01:49 +00:00
github-actions[bot] fc65c5c219
Merge master into staging-next 2022-07-03 18:01:12 +00:00
ranfdev cf19e96438 edgedb: init at unstable-2022-06-27
I can't init at 1.1.2 because there's an issue while vendoring the packages.
v1.1.2 seem to require two different version of the same package, causing an issue similar to
https://github.com/NixOS/nixpkgs/issues/30742.
2022-07-03 18:32:49 +02:00
sudosubin efcfeb4cd9
check-jsonschema: init at 0.16.2 2022-07-03 23:49:11 +09:00
Peter Hoeg c70172f9d0 pam_tmpdir: init at 0.09 2022-07-03 22:00:30 +08:00
Anderson Torres e70d2e3b24
Merge pull request #180000 from hqurve/junction
junction: init at 1.5.0
2022-07-03 10:03:46 -03:00
hqurve 7a084f4285 junction: init at 1.5.0 2022-07-03 08:10:53 -04:00
Anderson Torres 1603f337a9
Merge pull request #179767 from BillHuang2001/init/feishu
feishu: init at 5.9.18
2022-07-03 09:06:56 -03:00
Anderson Torres 3a96700b21
Merge pull request #179649 from wegank/aegisub-darwin
aegisub: add support for aarch64 platforms
2022-07-03 09:04:49 -03:00
github-actions[bot] 9d5f237bbd
Merge staging-next into staging 2022-07-03 12:01:55 +00:00
github-actions[bot] 00b3f42427
Merge master into staging-next 2022-07-03 12:01:23 +00:00
Vladimír Čunát 18b14a254d
Merge #179510: thunderbird*: 91.11.0 -> 102.0 2022-07-03 10:06:47 +02:00
happysalada 4d1e5c1140 erigon: 2022.02.04 -> 2022.07.01 2022-07-03 03:58:24 -04:00
7c6f434c d77afe094c
Merge pull request #179055 from Izorkin/update-nginx
update nginx
2022-07-03 06:43:26 +00:00
github-actions[bot] 335d99d552
Merge staging-next into staging 2022-07-03 06:01:56 +00:00
github-actions[bot] bd3785fad4
Merge master into staging-next 2022-07-03 06:01:20 +00:00
Weijia Wang 7d072a2e44 aegisub: fix build on aarch64 2022-07-03 07:13:47 +02:00