Commit graph

63207 commits

Author SHA1 Message Date
Finn Behrens 15af01b456
element-desktop: fix darwin build (#132635)
Add Frameworks to native dependencies

Signed-off-by: Finn Behrens <me@kloenk.dev>
2021-08-04 11:09:56 +02:00
Markus Kowalewski 7d3b20253f
ergoscf: init at 3.8 2021-08-04 00:29:52 +02:00
Artturin 73a54fec42 perlPackages.GooCanvas2CairoTypes: init at 0.001 2021-08-04 00:01:00 +03:00
Fabian Affolter 606e53dc85 python3Packages.types-pytz: init at 2021.1.0 2021-08-03 22:53:36 +02:00
Sandro a1fc4daa85
Merge pull request #132563 from dali99/add_randtype
randtype: init at 1.13
2021-08-03 20:48:55 +00:00
sternenseemann 148d73fc74 pkgsLLVM.stdenv: use lld again
PR #122778 allowed the linker being chosen independently from useLLVM
which also affected pkgsLLVM where we were relying on this behavior.
For platform sets assembled from scratch useLLVM still implies
linker == "lld", however in the case of pkgsLLVM we update the current
platform via the set update operator which means that `linker` won't
be re-evaluated. Using ld.bfd with pkgsLLVM is okay to a certain extent,
but with C++ things begin to break.

We fix this by setting linker explicitly.
2021-08-03 22:39:29 +02:00
Bernardo Meurer 974e1b51d6
Merge pull request #132519 from lovesegfault/networkaudiod
networkaudiod: init
2021-08-03 19:47:27 +00:00
davidak 53fc3687c3
Merge pull request #132546 from bobby285271/quilter
quilter: drop package
2021-08-03 20:46:28 +02:00
Lucas Ransan 92e201e938
dictu: init at 0.19.0 2021-08-03 20:42:35 +02:00
Daniel Olsen 7467b025a0 randtype: init at 1.13 2021-08-03 18:14:09 +02:00
pacien d65cee7b07 perlPackages.SQLTranslator: add missing deps
This adds missing dependencies for the `sqlt*` scripts provided in
the SQLTranslator package.
2021-08-03 18:00:07 +02:00
Stig Palmquist cc4f71d619 perlPackages.SQLTranslator: fix scripts shebang 2021-08-03 18:00:03 +02:00
Artturin fd2ea35741 perlPackages.Gtk3ImageView: 6 -> 9 2021-08-03 17:54:59 +03:00
Bobby Rong d4fe38632e
quilter: drop package 2021-08-03 22:40:25 +08:00
sternenseemann 66f8529d91 emacsPackages.ada-mode: build tools needed at runtime
ada-mode includes extra binaries which are used by it at runtime. They
require gnat, gprbuild, gnatcoll-core and wisi's source checked out in
`../wisi-*`.
2021-08-03 14:58:49 +02:00
sternenseemann 9bc1e429d0 gnatcoll-*: init gnatcoll-db at 21.0.0
gnatcoll-sql: init at 21.0.0
gnatcoll-sqlite: init at 21.0.0
gnatcoll-xref: init at 21.0.0
gnatcoll-postgres: init at 21.0.0

gnatcoll-db2ada: init at 21.0.0
gnatinspect: init at 21.0.0

Ada database interaction libraries and related tools which are managed
in the gnatcoll-db repository. The attribute and derivation names
don't include "db" since the GPR project files upstream also don't:
They are named `gnatcoll_${component}.gpr` usually, except for the
executables.
2021-08-03 14:58:49 +02:00
sternenseemann 41f190a360 gnatcoll-*: init gnatcoll-bindings at 21.0.0
gnatcoll-gmp: init at 21.0.0
gnatcoll-iconv: init at 21.0.0
gnatcoll-lzma: init at 21.0.0
gnatcoll-omp: init at 21.0.0
gnatcoll-python3: init at 21.0.0
gnatcoll-readline: init at 21.0.0
gnatcoll-syslog: init at 21.0.0
gnatcoll-zlib: init at 21.0.0

This inits a bunch of gnatcoll-* packages which are managed in the
gnatcoll-bindings repository. I have chosen not to include "bindings"
in their derivation or attribute names, since the GPR project
definitions themselves all don't contain that as well, instead they
are name `gnatcoll_${component}.gpr`.
2021-08-03 14:58:49 +02:00
sternenseemann f4e018075e gnatcoll-core: init at 21.0.0 2021-08-03 14:58:49 +02:00
sternenseemann c3c4ef859a gprbuild, xmlada: init at 21.0.0
GPRbuild is a multi language build system developed by AdaCore which
is mostly used for build Ada-related projects using GNAT.

Since GPRbuild is used to build itself and its dependency library
XML/Ada we first build a bootstrap version of it using the provided
bash build script bootstrap.sh as the gprbuild-boot derivation.
gprbuild-boot is then used to build xmlada and the proper gprbuild
derivation.

GPRbuild has its own search path mechanism via GPR_PROJECT_PATH which
we address via a setupHook. It currently works quite similar to the
pkg-config one: It accumulates all inputs into GPR_PROJECT_PATH,
GPR_PROJECT_PATH_FOR_BUILD etc. However this is quite limited at the
moment as we don't have a gprbuild wrapper yet which understands the
_FOR_BUILD suffix. However, we'll need to address this in the future
as it is currently basically impossible to test since the distinction
only affects cross-compilation, but it is not possible to build a GNAT
cross-compiler in nixpkgs at the moment (I'm working on changing that,
however).

Another issue we had to solve was GPRbuild not finding the right GNAT
via its gprconfig tool: GPRbuild has a knowledge base with compiler
definitions which run some checks and collect info about binaries
which are in PATH. In the end the first compiler in PATH that supports
the desired language is selected.

We want GPRbuild to discover our wrapped GNAT since the unwrapped one
is incapable of producing working binaries since it won't find the
crt*.o objects distributed with libc. GPRbuild however needs to find
the Ada runtime distributed with GNAT which is not part of the wrapper
derivation, so it will skip the wrapper and select the unwrapped GNAT.
Symlinking the unwrapped's lib directory into the wrapper fixes this
problem, but breaks linking in some cases (e. g. when linking against
OMP from gcc, the runtime variant will shadow the problem dynamic lib
from buildInputs). Additionally it uses gnatls as an indicator it has
found GNAT which is not part of the wrapper.

The solution we opted to adopt here is to install a custom compiler
description into gprbuild's knowledge base which properly detects the
nixpkgs GNAT wrapper: It uses gnatmake to detect GNAT instead of
gnatls and discovers the runtime via a symlink we add to
`$out/nix-support`. This additional definition is enough to properly
detect GNAT, since the plain wrapped gcc detection works out of the
box. It may, however, be necessary to add special definitions for
other languages in the future where gprbuild also needs to discover
the runtime.

One future improvement would be to install libgpr into a separate
output or split it into a separate derivation (which would require to
link gprbuild statically always since otherwise we end up with a
cyclical dependency).
2021-08-03 14:58:49 +02:00
Sandro Jäckel 503f72bfa6
pythonPackages: sphinxcontrib_plantuml -> sphinxcontrib-plantuml 2021-08-03 12:04:12 +02:00
Bernardo Meurer 3215de26a2
networkaudiod: init at 4.1.1-46 2021-08-03 01:42:50 -07:00
davidak bd27e2e831
Merge pull request #123045 from kira-bruneau/replay-sorcery
replay-sorcery: init at 0.5.0
2021-08-03 07:44:35 +02:00
Rob Brewer 77396b3e38
unixcw: use libsForQt5, enable qt wrapper (#131816) 2021-08-02 23:31:27 -04:00
Tom fc8a8266d7 sirula: init at unstable-2021-07-11
This commit packages sirula, a simple app launcher for wayland.
2021-08-02 22:00:11 -04:00
Stig c464dc811b
Merge pull request #132237 from Artturin/perlmagikupdate
perlPackages.ImageMagick: 7.0.10 -> 7.0.11
2021-08-03 00:16:14 +02:00
Anderson Torres 0529fe7a38
Merge pull request #132309 from blitz/djv
djv: init at 2.0.8-unstable-2021-07-31
2021-08-02 18:17:56 -03:00
Fabian Affolter 178ddcc863
Merge pull request #127531 from fabaff/geocachingapi
python3Packages.geocachingapi: init at 0.1.0
2021-08-02 22:47:23 +02:00
Harrison Houghton b7d9b2a9e9 libsigrok_0_3: fix
Apparently we have an old-version override and it doesn't make the
bindings at all, so only run the installCheck when we know it should
succeed.
2021-08-02 22:36:02 +02:00
Robert Hensing 48ea8eb813
Merge pull request #132416 from turion/dev_rabbitmq-server_1.8_1.9
rabbitmq-server: 3.8.9 -> 3.9.1
2021-08-02 22:08:30 +02:00
Julian Stecklina 41d6e94bdf djv: init at 2.0.8-unstable-2021-07-31 2021-08-02 21:38:34 +02:00
Artturin f173c77476 perlPackages.ImageMagick: rename from perlPackages.PerlMagick 2021-08-02 20:05:00 +03:00
Robin Gloster 15ffca434e
Merge branch 'master' into meshcentral 2021-08-02 17:08:40 +02:00
Artturin 55692c5a0a perlPackages.PerlMagick: 7.0.10 -> 7.0.11-1 2021-08-02 17:57:09 +03:00
Sandro cd9938d126
Merge pull request #132215 from ilyakooo0/iko/chia-plotter 2021-08-02 14:39:38 +00:00
Sandro 3d6bda9595
Merge pull request #131562 from Luflosi/add-sphinx-inline-tabs 2021-08-02 14:28:39 +00:00
Manuel Bärenz b0f33d7c2e rabbitmq-server: 3.8.9 -> 3.9.1 2021-08-02 16:19:30 +02:00
Sandro 5e8a721a61
Merge pull request #131275 from superherointj/package-telegram-cli-20200106 2021-08-02 14:14:58 +00:00
superherointj 88cb7c8f63 telegram-cli: init 20200106
Co-authored-by: @sikmir @SuperSandro2000
2021-08-02 10:51:15 -03:00
Sandro f427121142
Merge pull request #132406 from SuperSandro2000/cleanup 2021-08-02 13:35:25 +00:00
Sandro e60aa92068
Merge pull request #132409 from SuperSandro2000/azureus
azureus: drop
2021-08-02 11:59:51 +00:00
Sandro 23203bff78
ntfy-webpush: init at 0.1.3 (#132404) 2021-08-02 13:59:26 +02:00
Sandro Jäckel c052a6d83e
azureus: drop 2021-08-02 13:28:38 +02:00
Sandro Jäckel 95c29de58f
pivx: cleanup, format 2021-08-02 13:11:50 +02:00
iko a6581d356d
chia-plotter: init at unstable-2021-07-12 2021-08-02 13:16:42 +03:00
Sandro 633a5a6af9
Merge pull request #132391 from SuperSandro2000/cleanup 2021-08-02 10:14:12 +00:00
Ben Siraphob c8a731593b
Merge pull request #113185 from fabaff/libreddit
libreddit: init at 0.10.1
2021-08-02 17:05:00 +07:00
Sandro f3c209b7a9
Merge pull request #131973 from McSinyx/palace 2021-08-02 09:21:52 +00:00
Sandro Jäckel 7251411f95
jitsi-meet-electron: format 2021-08-02 10:58:46 +02:00
Sandro 268b1dec32
Merge pull request #132095 from 06kellyjac/grpc-web
protoc-gen-grpc-web: init at 1.2.1
2021-08-02 08:53:52 +00:00
Sandro 0576bf5dc9
Merge pull request #131909 from figsoda/taplo 2021-08-02 07:59:30 +00:00
06kellyjac 970b2d4c10 protoc-gen-grpc-web: init at 1.2.1 2021-08-02 08:58:09 +01:00
Robert Hensing 70369dbba0
Merge pull request #132331 from sternenseemann/pkgs-llvm-stdenv-trunk
pkgs/top-level/release.nix: build pkgsLLVM.stdenv as part of trunk
2021-08-01 20:32:18 +02:00
Benjamin Asbach f22a7ae1a8
soapui: 5.5.0 -> 5.6.0 (#131307)
Co-authored-by: Benjamin Asbach <asbachb@users.noreply.github.com>
2021-08-01 20:11:12 +02:00
sternenseemann 0307a8af6c pkgs/top-level/release.nix: build pkgsLLVM.stdenv as part of trunk
Having pkgsLLVM.stdenv built with nixpkgs:trunk will make building
anything in pkgsLLVM decidedly less painful since it will eliminate
the need to build LLVM and clang locally, which shouldn't be as bad
on hydra.

Darwin is disabled for now since it doesn't evaluate correctly there
(infinite recursion problem with the SDK).
2021-08-01 19:12:43 +02:00
Tom Repetti c925232e67 lemon-graph: init at 1.3.1 2021-08-01 11:55:48 -04:00
Profpatsch 6376458424 sane: Add support for the unfree Fujitsu ScanSnap drivers
This adds the scanner files already linked from the
`etc/sane.d/epjitsu.conf` file, which are extracted from the Windows
drivers and mirrored on GitHub.

Being a Japanese hardware vendor, Fujitsu’s software release &
licensing methods are horrifying, but their scanners are some of the
best, so we should definitly have discoverable support for them, which
this patch hopefully adds.

Inspiration was taken from the following sources:
https://www.josharcher.uk/code/install-scansnap-s1300-drivers-linux/
https://ubuntuforums.org/archive/index.php/t-1461915.html
https://github.com/stevleibelt/scansnap-firmware
2021-08-01 13:45:46 +02:00
Enno Richter 7ad795da18 snmpcheck: init at 1.9 2021-08-01 09:46:29 +02:00
Sebastián Mancilla bf0cd1ce16 libcanberra/libcanberra-gtk2: fix build on darwin
All libcanberra/libcanberra-gtk2/libcanberra-gtk3 packages were marked
as broken on commit 806d814516 (libcanberra: mark broken on darwin,
2021-02-11), but only libcanberra-gtk3 is broken due to the missing
header.

This commit refactors how to enable GTK support, to mark just
libcanberra-gtk3 as broken and allow building libcanberra and
libcanberra-gtk2.

libcanberra builds but the linker fails with:

    ld: file not found: /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon for architecture x86_64
    clang-7: error: linker command failed with exit code 1 (use -v to see invocation)

Adding Carbon to the inputs solves the problem.

libcanberra-gtk2 builds and the linker finishes without the above error,
most likely because it depends on gtk2 and gtk2 depends on Cocoa.

Also fix some issues with the derivation:

- Use pname/version instead of name.
- Use lib.optionalString to set postPatch.
- Only set passthru if building with GTK support, and ensure that the
  proper directory is passed for each GTK version.
2021-07-31 19:35:48 -04:00
wheelsandmetal ec6c669d5e sentry-native: init at 0.4.11 2021-07-31 21:40:51 +01:00
Ben Siraphob 9d865ef9f6
Merge pull request #132231 from Artturin/udocker-fix
udocker: 1.1.3 -> 1.3.1 and make usable
2021-08-01 01:30:02 +07:00
Fabian Affolter bd3eb499b8 python3Packages.httpx-ntlm: init at 0.0.10 2021-07-31 19:52:05 +02:00
Artturin 01c5b01858 udocker: 1.1.3 -> 1.3.1 and make usable 2021-07-31 20:50:20 +03:00
Fabian Affolter cde2014891 python3Packages.httpx-socks: init at 0.4.1 2021-07-31 19:14:01 +02:00
Lucas Ransan fe6caae93d
c3c: init at unstable-2021-07-30 2021-07-31 13:14:50 +02:00
Lara 2cb0107550 arch-install-scripts: init at 24 2021-07-31 10:44:38 +02:00
Ben Siraphob 60704a29f0
Merge pull request #131896 from fabaff/brotlicffi
python3Packages.brotlicffi: init at 1.0.9.2
2021-07-31 13:57:34 +07:00
Lein Matsumaru 71878bc1c9
python3Packages.torrequest: init at 0.1.0 2021-07-31 05:11:29 +00:00
Bernardo Meurer 1a182deb8c
rpiboot-unstable -> rpiboot 2021-07-30 17:16:17 -07:00
David McFarland 4a8f979cf7 omnisharp-roslyn: use dotnet-sdk_5 2021-07-30 17:10:03 -03:00
David McFarland 3672c0a33f msbuild: 16.8 -> 16.10.1 2021-07-30 17:10:03 -03:00
Sander van der Burg 00486ec99e
Merge pull request #131864 from svanderburg/add-rott
rott: init at 1.1.2
2021-07-30 18:09:43 +02:00
Sandro b71a0d62f7
Merge pull request #129815 from ethancedwards8/difftastic
difftastic: init at unstable-2021-07-09
2021-07-30 13:02:21 +00:00
Sandro 5d3c73f54c
Merge pull request #132061 from luc65r/pkg/cone
cone: init at unstable-2021-07-25
2021-07-30 12:46:59 +00:00
Sandro efbb23c889
Merge pull request #131538 from psibi/add-ouch
ouch: init at 0.1.5
2021-07-30 12:21:56 +00:00
Lucas Ransan 1c9dda8a9b
cone: init at unstable-2021-07-25 2021-07-30 13:35:43 +02:00
AndersonTorres 2833fb0ec7 algol68g: init at 2.8.4 2021-07-30 04:06:07 -03:00
Nguyễn Gia Phong 9ce1327fda
python3Packages.palace: init at 0.2.5 2021-07-30 11:15:53 +07:00
Ethan Edwards 7a979a3325
difftastic: init at 0.6 2021-07-29 21:00:42 -04:00
figsoda 4fcccf0762 taplo-lsp: init at 0.2.4 2021-07-29 16:47:07 -04:00
figsoda 4301e4eaa8 taplo-cli: init at 0.4.0 2021-07-29 16:46:20 -04:00
Fabian Affolter 7ac716fa2b python3Packages.brotlicffi: init at 1.0.9.2 2021-07-29 21:28:12 +02:00
Sander van der Burg 946ad968ff rott: init at 1.1.2 2021-07-29 20:27:02 +02:00
Vincent Laporte 4d4aa14a3e flow: build with OCaml 4.10 2021-07-29 16:14:21 +02:00
Sandro 890220b0e4
Merge pull request #131300 from nathanruiz/environmental-override 2021-07-29 14:06:42 +00:00
Sandro 185382415c
Merge pull request #131945 from Luflosi/add-sphinxext-opengraph
python3Packages.sphinxext-opengraph: init at 0.4.2
2021-07-29 13:51:02 +00:00
Artturin d70eee2cb2 libvarlink: init at 22 2021-07-29 16:48:56 +03:00
Martin Weinelt 9b52ff96cd
Merge pull request #130833 from stigtsp/package/convos-6.26 2021-07-29 14:56:44 +02:00
Stig 4bdce59e54
Merge pull request #131862 from xworld21/update-nytprof
perlPackages.DevelNYTProf: 6.06 -> 6.10
2021-07-29 14:19:33 +02:00
Nathan Ruiz e1e51730dd pythonPackages.environmental-override: init at 0.1.2 2021-07-29 12:17:52 +00:00
Stig Palmquist 38357d7306 perlPackages.LinkEmbedder: 1.18 -> 1.20 2021-07-29 14:12:54 +02:00
Luflosi 476329cf00
python3Packages.sphinxext-opengraph: init at 0.4.2 2021-07-29 14:09:16 +02:00
Sandro 5e016bba67
Merge pull request #131904 from rissson/aviator
aviator: init at 1.8.1
2021-07-29 11:20:07 +00:00
Robin Gloster e2bbd5976c
Merge pull request #131839 from fpletz/pkgs/srtrelay
srtrelay: init at 2021-07-28
2021-07-29 12:51:51 +02:00
Sandro 05f18a1ea6
Merge pull request #131907 from rissson/spruce
spruce: init at 1.28.0
2021-07-29 09:39:35 +00:00
Linus Heckemann 3979015355 meshcentral: init at 0.8.87 2021-07-29 11:30:04 +02:00
Frederik Rietdijk 8dcfe523f7
Merge pull request #131719 from FRidh/python2-to-3
Python: further migrate packages from 2 to 3
2021-07-29 10:49:00 +02:00
Frederik Rietdijk 3888701716
Merge pull request #131345 from NixOS/staging-next
Staging next
2021-07-29 10:45:20 +02:00
Sandro 28a677ca85
Merge pull request #131924 from AndersonTorres/new-marst 2021-07-29 08:37:44 +00:00
AndersonTorres 2f6eb6594d marst: init at 2.7
MARST is an Algol-to-C translator.
2021-07-29 05:17:12 -03:00
Ben Siraphob 2f3c29cc68 coqPackages.graph-theory: init at 0.9 2021-07-29 09:33:21 +02:00
Ben Siraphob fe273ea648
Merge pull request #113263 from lopsided98/samba-cross
samba: fix cross-compilation
2021-07-29 13:18:37 +07:00
github-actions[bot] 36f70c9637
Merge master into staging-next 2021-07-29 06:01:13 +00:00
Peter Hoeg 98dcfcfeb8 mkvtoolnix: 56.0.0 -> 59.0.0
Additional changes:

1. Qt is now needed for both the cli and gui variants.
2. Run the test suite
3. Drop a number of dependencies that are no longer needed
4. We have nlohmann_json and pugixml, so use those instead of the
   vendored versions
5. Add support for reading chapters from DVDs
6. Build with rake as recommended by upstream
2021-07-29 11:29:49 +08:00
Mario Rodas 707f6106fe ocamlformat: 0.18.0 -> 0.19.0
https://github.com/ocaml-ppx/ocamlformat/releases/tag/0.19.0
2021-07-29 05:00:19 +02:00
Mario Rodas f7eb8b8c50 ocamlPackages.odoc-parser: init at 0.9.0 2021-07-29 05:00:19 +02:00
Marc 'risson' Schmitt 7c59c68335
spruce: init at 1.28.0
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
2021-07-29 02:44:08 +02:00
github-actions[bot] 4fc7a31edb
Merge master into staging-next 2021-07-29 00:01:33 +00:00
Marc 'risson' Schmitt b808c136bd
aviator: init at 1.8.1
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
2021-07-29 02:00:42 +02:00
Johannes Arnold 39f65ee33d nixos/mlvwm: init at 0.9.3 2021-07-29 01:19:05 +02:00
Franz Pletz e5209d3d0b
Merge pull request #118158 from nextl00p/nmap
nmap: 7.80 -> 7.91
2021-07-28 22:33:51 +02:00
Franz Pletz 1112f62a4a
Merge pull request #131325 from angustrau/qtspim
qtspim: init at 9.1.22
2021-07-28 21:46:46 +02:00
Franz Pletz e6af83e346
Merge pull request #131419 from angustrau/xxgdb
xxgdb: init at 1.12
2021-07-28 21:46:09 +02:00
Franz Pletz 842e5428b9
Merge pull request #131417 from angustrau/xspim
xspim: init at 9.1.22
2021-07-28 21:43:39 +02:00
Franz Pletz 097a91b918
Merge pull request #131424 from angustrau/nttcp
nttcp: init at 1.47
2021-07-28 21:41:30 +02:00
Franz Pletz fbbf12a748
Merge pull request #131422 from angustrau/sockperf
sockperf: init at 3.7
2021-07-28 21:40:42 +02:00
Vincenzo Mantova ca501b305c perlPackages.DevelNYTProf: 6.06 -> 6.10 2021-07-28 20:11:49 +01:00
github-actions[bot] 6fcda9f1ec
Merge master into staging-next 2021-07-28 18:01:16 +00:00
Franz Pletz 8f40f574f8
Merge pull request #131578 from mweinelt/influxdb-exporter
prometheus-influxdb-exporter: init at 0.8.0
2021-07-28 19:47:06 +02:00
Franz Pletz bbacb162cb
srtrelay: init at 2021-07-28 2021-07-28 19:10:39 +02:00
Angus Trau 656524c416 python3Packages.pyfakewebcam: init at 0.1.0 2021-07-28 23:22:10 +10:00
Sandro 5d6ceb534e
Merge pull request #131774 from dan4ik605743/coreshot
coreshot: init at 4.2.0
2021-07-28 12:27:01 +00:00
Sandro f7e54b6765
Merge pull request #131686 from SuperSandro2000/bitcoin 2021-07-28 12:01:50 +00:00
github-actions[bot] a1d3be1d42
Merge master into staging-next 2021-07-28 12:01:16 +00:00
Sandro 1ae194ac45
Merge pull request #131786 from dan4ik605743/coretoppings
coretoppings: init at 4.2.0
2021-07-28 11:32:27 +00:00
Sandro Jäckel 06a2b9fa95
pkgs/applications/blockchains: move packages into subdirs 2021-07-28 13:29:10 +02:00
Sandro 3f02269136
Merge pull request #131800 from SuperSandro2000/fix-alias 2021-07-28 11:28:39 +00:00
Sandro 17cc103af3
Merge pull request #131084 from dan4ik605743/corefm
corefm: init at 4.2.0
2021-07-28 11:04:37 +00:00
Sandro Jäckel 3dbfb638b3
pythonPackages: fix alias 2021-07-28 13:02:22 +02:00
Sandro fc0fbc4892
Merge pull request #131787 from SuperSandro2000/astroid
astroid: move fallback vim into top-level
2021-07-28 10:49:14 +00:00
sternenseemann 364713fdd3 gnat*: bootstrap cross with native compiler of the same version
https://gcc.gnu.org/install/prerequisites.html#GNAT-prerequisite
2021-07-28 12:44:49 +02:00
sternenseemann 801152e057 gnat*: take bootstrap gnat compiler from buildPackages
Due to overriding and use in string interpolation, our splicing magic
doesn't work and we need to do this explicitly.
2021-07-28 12:44:49 +02:00
dan4ik 02734d6d2f coretoppings: init at 4.2.0 2021-07-28 16:15:54 +07:00
Jörg Thalheim bef9615b61
Merge pull request #131768 from applePrincess/ack-3.5.0
perlPackages.ack: 3.4.0 -> 3.5.0
2021-07-28 09:39:33 +01:00
Sandro Jäckel ebb924d472
astroid: move fallback vim into top-level 2021-07-28 09:41:32 +02:00
github-actions[bot] 86197a8023
Merge master into staging-next 2021-07-28 06:01:04 +00:00
dan4ik ea34e42b65 coreshot: init at 4.2.0 2021-07-28 12:46:44 +07:00
Angus Trau 87f2965a8b python3Packages.luddite: init at 1.0.2 2021-07-27 22:06:47 -07:00
Lein Matsumaru 314c1772c8
perlPackages.ack: 3.4.0 -> 3.5.0 2021-07-28 04:21:27 +00:00
github-actions[bot] ef4ddefb6e
Merge master into staging-next 2021-07-28 00:01:24 +00:00
José Romildo e91e8a8939 whitesur-gtk-theme: 2021-06-23 -> 2021-07-27 2021-07-27 17:53:25 -03:00
Sander van der Burg 9de184f9bc
Merge pull request #131593 from svanderburg/add-ecwolf
ecwolf: init at 1.3.3
2021-07-27 21:54:17 +02:00
Frederik Rietdijk 238fa78d88 mininet: use python3 2021-07-27 20:43:41 +02:00
Frederik Rietdijk f16520b1d5 opencv4: use python3 2021-07-27 20:42:01 +02:00
Frederik Rietdijk 56a031d2af mygpoclient: use python3 version 2021-07-27 20:42:01 +02:00
Frederik Rietdijk afa9c4ae68 mlt: requires python3 2021-07-27 20:42:00 +02:00
Frederik Rietdijk 6103f78416 me_cleaner: stay with python2 2021-07-27 20:37:07 +02:00
Frederik Rietdijk 857aba26ca libtensorflow: refer to python3 2021-07-27 20:37:06 +02:00
Frederik Rietdijk af5e9694ca libtorrent-rasterbar-{1_1_x,1_2_x}: stay with python2 2021-07-27 20:37:06 +02:00
Frederik Rietdijk b793742a4e libsigrok-0-3-0 -> libsigrok_0_3 2021-07-27 20:37:05 +02:00
Frederik Rietdijk 9070c34cd1 k3d: stay with python2
not tested whether python3 works
2021-07-27 20:37:05 +02:00
Frederik Rietdijk d39767ea0f blastem: stay with python2 2021-07-27 20:37:04 +02:00
github-actions[bot] db6a26db02
Merge master into staging-next 2021-07-27 18:01:01 +00:00
Phillip Seeber 9504a98c32 avogadro2: init at 1.94.0
avogadro2: code-review suggestions


avogadro2: review comments
2021-07-27 18:43:15 +02:00
Phillip Seeber 43e749aa76 avogadrolibs: init at 1.94.0
avogadrolibs: review comments
2021-07-27 18:43:15 +02:00
Phillip Seeber b5bf1346c0 molequeue: init at 0.9.0
molequeue: review comments
2021-07-27 18:43:15 +02:00
Phillip Seeber 3ea182f321 mmtf-cpp: init at 1.0.0 2021-07-27 18:43:15 +02:00
Phillip Seeber a54c0b9503 libmsym: init at 0.2.3
libmsym: code-review stuff
2021-07-27 18:43:15 +02:00
Sandro Jäckel 2008472e41 python39Packages: remove two more aliases 2021-07-27 08:16:20 -07:00
Sandro Jäckel 96f904b076 python39Packages.python-mapnik: cleanup, remove pkgs from input, remove alias 2021-07-27 08:14:56 -07:00
Mario Rodas 6c154128a7
Merge pull request #131490 from marsam/init-youtube-transcript-api
pythonPackages.youtube-transcript-api: init at 0.4.1
2021-07-27 09:00:32 -05:00
Mario Rodas ac1cc7bce1
Merge pull request #131489 from marsam/update-gonic
gonic: 0.12.2 -> 0.13.1
2021-07-27 08:50:32 -05:00
Sandro 9f87e8ff74
Merge pull request #131024 from dan4ik605743/coreaction2
coreaction: init at 4.2.0
2021-07-27 12:59:52 +00:00
github-actions[bot] 2692c2e427
Merge master into staging-next 2021-07-27 12:01:20 +00:00
Angus Trau 319c186f95 sockperf: init at 3.7 2021-07-27 21:33:47 +10:00
Angus Trau 3656c6a538 xxgdb: init at 1.12 2021-07-27 21:32:54 +10:00
Sandro de98051abd
Merge pull request #131087 from dan4ik605743/coregarage
coregarage: init at 4.2.0
2021-07-27 11:16:13 +00:00
Sandro 91894c29fa
Merge pull request #131663 from SuperSandro2000/cleanup 2021-07-27 10:46:32 +00:00
Sandro Jäckel b1b7d127d0
tiny8086: remove builder.sh 2021-07-27 12:24:16 +02:00
Emile e44e97f237
interactsh: init at 0.0.3 (#131201)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-07-27 09:36:31 +02:00
Evils 24bc10546a libsigrokdecode: python3 -> python38
latest release is close to 2 years old, fails to run with 3.9
2021-07-27 08:51:43 +02:00
Alexandre Iooss c5e0a9980b
nitter: init at unstable-2021-07-18 2021-07-27 08:50:31 +02:00
github-actions[bot] 737604e550
Merge master into staging-next 2021-07-27 00:01:35 +00:00
Sander van der Burg de9913708c ecwolf: init at 1.3.3 2021-07-26 23:31:31 +02:00
Guillaume Girol 455712841c
Merge pull request #130663 from symphorien/bitwuzla
bitwuzla: init at unstable-2021-07-01
2021-07-26 19:45:46 +00:00
Fabian Affolter b27f145c81
Merge pull request #131103 from eonpatapon/hurl
hurl: init at 1.2.0
2021-07-26 21:21:09 +02:00
github-actions[bot] d01381167a
Merge master into staging-next 2021-07-26 18:01:17 +00:00
sterni 6f08b46853
Merge pull request #130424 from NixOS/haskell-updates
haskellPackages: update stackage and hackage
2021-07-26 18:06:23 +02:00
Sandro 694492c912
Merge pull request #131081 from dan4ik605743/corearchiver 2021-07-26 15:06:56 +00:00
Sandro 6284609a6b
Merge pull request #131124 from starcraft66/assign-lb-ip
assign-lb-ip: init at 2.2.0
2021-07-26 15:02:48 +00:00
Jean-Philippe Braun 2849d97ee6 hurl: init at 1.2.0 2021-07-26 16:50:38 +02:00
Martin Weinelt 41724be4e6
prometheus-influxdb-exporter: init at 0.8.0 2021-07-26 13:14:43 +02:00
Frederik Rietdijk 18347a1caf Merge master into staging-next 2021-07-26 12:40:04 +02:00
sternenseemann 6d4c440f80 Revert "pkgsMusl.haskell.compiler.*: use python38 to unbreak build"
This reverts commit 36628e6e04.

As it turns out this wasn't caused by the update from python 3.8 -> 3.9,
but the underlying issue affects both python version (it seems that LTO
is at fault currently). Will have to be fixed elsewhere, reverting.
2021-07-26 12:33:18 +02:00
Luflosi da6c45e9cc
python3Packages.sphinx-inline-tabs: init at 2021.04.11.beta9 2021-07-26 11:42:04 +02:00
sternenseemann ade74bbcb0 Merge remote-tracking branch 'origin/master' into haskell-updates 2021-07-26 11:10:05 +02:00
sternenseemann 36628e6e04 pkgsMusl.haskell.compiler.*: use python38 to unbreak build
seems like python39 currently fails to build with musl as libc
https://github.com/NixOS/nixpkgs/issues/131557. As a workaround, we can just
build the musl GHCs using python38 like we have been in the past (the python 3.8
-> 3.9 update being a more recent development).
2021-07-26 11:00:52 +02:00
Sandro 0802970566
Merge pull request #129678 from hexagonal-sun/add-bic 2021-07-26 08:05:15 +00:00
Vincent Laporte 8da4fa1e4b ocamlPackages.otoml: init at 0.9.0 2021-07-26 09:41:10 +02:00
Frederik Rietdijk 62370fb59a Merge remote-tracking branch 'upstream/master' into staging-next 2021-07-26 09:19:44 +02:00
Alexander Khodyrev 3fe085cb14 xplugd: init at 1.4 2021-07-26 09:16:20 +03:00
Sibi Prabakaran d78400378b
ouch: init at 0.1.5 2021-07-26 08:19:29 +05:30
github-actions[bot] 527dacdda6
Merge master into haskell-updates 2021-07-26 00:05:43 +00:00
Sandro 3f9ec03c49
Merge pull request #129908 from IvanMalison/quill-qr
quill-qr: init at 0.1.0
2021-07-25 23:20:42 +00:00
Sandro 042b5fb908
Merge pull request #129894 from IvanMalison/addICKeysmith
ic-keysmith: init at 1.6.0
2021-07-25 23:14:43 +00:00
Mauricio Collares 045d6f35d9 polymake: 3.2.rc4 -> 4.4 2021-07-25 20:12:21 -03:00
Ivan Malison 85f3a06c9f
quill-qr: init at 0.1.0 2021-07-25 15:29:41 -06:00
Ivan Malison 11863820b2
ic-keysmith: init at 1.6.0 2021-07-25 15:20:16 -06:00
Igor Kuzmenko de0138305e rubik-font: init at 2.200 2021-07-25 21:48:45 +03:00
sterni 4cf4f3c454 Revert "ocamlPackages.letsencrypt: 0.2.5 -> 0.3.0" 2021-07-25 16:45:09 +02:00
Guillaume Girol 1894e8d945 bitwuzla: init at unstable-2021-07-01 2021-07-25 15:52:25 +02:00