Commit graph

39419 commits

Author SHA1 Message Date
Zhaofeng Li 9050f3a37e moonraker: init at unstable-2021-07-18 2021-08-04 12:09:14 -07:00
Sandro 9ef44466b8
Merge pull request #132540 from luc65r/pkg/dictu
dictu: init at 0.19.0
2021-08-04 20:47:01 +02:00
Michael Weiss 388fa59b1d
Merge pull request #132643 from primeos/llvmPackages_13
llvmPackages_13: init at 13.0.0-rc1
2021-08-04 16:59:24 +02:00
Sandro 2f7babdbba
Merge pull request #132554 from markuskowa/add-ergoscf
ergoscf: init at 3.8
2021-08-04 16:40:18 +02:00
Michael Weiss 2540b66ba6
llvmPackages_13: init at 13.0.0-rc1 2021-08-04 16:00:39 +02:00
José Romildo Malaquias ac27d4a7a4
Merge pull request #131731 from romildo/upd.whitesur-gtk-theme
whitesur-gtk-theme: 2021-06-23 -> 2021-07-27
2021-08-04 09:20:06 -03:00
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
Sandro a1fc4daa85
Merge pull request #132563 from dali99/add_randtype
randtype: init at 1.13
2021-08-03 20:48:55 +00: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
Bobby Rong d4fe38632e
quilter: drop package 2021-08-03 22:40:25 +08: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
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
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
Sandro cd9938d126
Merge pull request #132215 from ilyakooo0/iko/chia-plotter 2021-08-02 14:39:38 +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 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 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
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
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
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
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
Artturin 01c5b01858 udocker: 1.1.3 -> 1.3.1 and make usable 2021-07-31 20:50:20 +03:00
Lara 2cb0107550 arch-install-scripts: init at 24 2021-07-31 10:44:38 +02:00
Bernardo Meurer 1a182deb8c
rpiboot-unstable -> rpiboot 2021-07-30 17:16:17 -07:00