Commit graph

50093 commits

Author SHA1 Message Date
Jan Tojnar 09c4736405
Merge pull request #83755 from jtojnar/jcat-0.1 2020-04-18 20:38:24 +02:00
Milan f6be877728
_3mux: init at 0.2.0 (#85141)
* _3mux: init at 0.1.0

* _3mux: 0.1.0 -> 0.2.0
2020-04-18 20:26:36 +02:00
xrelkd 07a85c01ac rshijack: init at 0.3.0 2020-04-19 02:20:15 +08:00
worldofpeace 21861f3a80
Merge pull request #85340 from xrelkd/add/sniffglue
sniffglue: init at 0.10.1
2020-04-18 14:16:40 -04:00
xrelkd 2b87ca0f9c sniffglue: init at 0.10.1 2020-04-19 01:57:35 +08:00
Markus Wamser 5fbab6dabb
pythonPackages.pdfposter init at 0.7.post1 (#82926)
Signed-off-by: Markus S. Wamser <github-dev@mail2013.wamser.eu>
2020-04-18 13:15:29 -04:00
Lionello Lunesu 4c538d022d ldc: 1.17.0 -> 1.20.1 2020-04-18 20:48:57 +08:00
Pavol Rusnak fadcfc3ea4
treewide: per RFC45, remove more unquoted URLs 2020-04-18 14:04:37 +02:00
Vladimír Čunát d96487b9ca
Merge branch 'master' into staging-next
Hydra nixpkgs: ?compare=1582510
2020-04-18 07:42:26 +02:00
Mario Rodas 1d3de252ff
Merge pull request #85380 from filalex77/packet-cli-0.0.6
packet-cli: init at 0.0.6
2020-04-17 20:24:13 -05:00
Will Dietz 9ae8499342 deluge: 1.3.15 -> 2.0.3
* let's try 2.0 version now, no time better than the present! Maybe!
* bz2 -> xz
* maybe python3
* disable pyGtkGlade for deps, maybe not needed?
* fix gtk/etc deps, deluge-gtk works! \o/
* restore installation of images and such

The old version is kept available as some torrent trackers have not
updated their whitelists yet.
2020-04-18 02:00:04 +02:00
Will Dietz ca722c5e2b libtorrent-rasterbar: 1.1.11 -> 1.2.5
https://raw.githubusercontent.com/arvidn/libtorrent/libtorrent-1_2_5/ChangeLog

The old release is kept available as libtorrentRasterbar-1_1_x for deluge 1.x.
2020-04-18 02:00:04 +02:00
John Ericson cdfda4b455
Merge pull request #83888 from matthewbauer/blas-alternatives
Add BLAS/LAPACK switching mechanism
2020-04-17 18:38:41 -04:00
Matthew Bauer 97fc083fd4 giac: broken on 64-bit blas 2020-04-17 16:24:31 -05:00
Matthew Bauer fcf33e2499 scs: breaks on 64bit blas 2020-04-17 16:24:31 -05:00
Matthew Bauer d83e9c9573 setup-hooks/audit-blas.sh: init
Add a simple hook that makes sure blas and lapack are linked to the
right place.
2020-04-17 16:24:25 -05:00
Matthew Bauer 7841b4290f pkgs/release-alternatives.nix: create
Add some ability to test the different BLAS/LAPACK implementations
together.
2020-04-17 16:24:16 -05:00
Matthew Bauer 1c8aba8334 treewide: use blas and lapack
This makes packages use lapack and blas, which can wrap different
BLAS/LAPACK implementations.

treewide: cleanup from blas/lapack changes

A few issues in the original treewide:

- can’t assume blas64 is a bool
- unused commented code
2020-04-17 16:24:09 -05:00
Matthew Bauer 43873351ff blas/lapack: add wrapper for “alternative”s of BLAS/LAPACK provider
This is based on previous work for switching between BLAS and LAPACK
implementation in Debian[1] and Gentoo[2]. The goal is to have one way
to depend on the BLAS/LAPACK libraries that all packages must use. The
attrs “blas” and “lapack” are used to represent a wrapped BLAS/LAPACK
provider. Derivations that don’t care how BLAS and LAPACK are
implemented can just use blas and lapack directly. If you do care what
you get (perhaps for some CPP), you should verify that blas and lapack
match what you expect with an assertion.

The “blas” package collides with the old “blas” reference
implementation. This has been renamed to “blas-reference”. In
addition, “lapack-reference” is also included, corresponding to
“liblapack” from Netlib.org.

Currently, there are 3 providers of the BLAS and LAPACK interfaces:

- lapack-reference: the BLAS/LAPACK implementation maintained by netlib.org
- OpenBLAS: an optimized version of BLAS and LAPACK
- MKL: Intel’s unfree but highly optimized BLAS/LAPACK implementation

By default, the above implementations all use the “LP64” BLAS and
LAPACK ABI. This corresponds to “openblasCompat” and is the safest way
to use BLAS/LAPACK. You may received some benefits from “ILP64” or
8-byte integer BLAS at the expense of breaking compatibility with some
packages.

This can be switched at build time with an override like:

    import <nixpkgs> {
        config.allowUnfree = true;
        overlays = [(self: super: {
          lapack = super.lapack.override {
            lapackProvider = super.lapack-reference;
          };
          blas = super.blas.override {
            blasProvider = super.lapack-reference;
          };
        })];
      }

or, switched at runtime via LD_LIBRARY_PATH like:

    $ LD_LIBRARY_PATH=$(nix-build -E '(with import <nixpkgs> {}).lapack.override { lapackProvider = pkgs.mkl; is64bit = true; })')/lib:$(nix-build -E '(with import <nixpkgs> {}).blas.override { blasProvider = pkgs.mkl; is64bit = true; })')/lib ./your-blas-linked-binary

By default, we use OpenBLAS LP64 also known in Nixpkgs as
openblasCompat.

[1]: https://wiki.debian.org/DebianScience/LinearAlgebraLibraries
[2]: https://wiki.gentoo.org/wiki/Blas-lapack-switch
2020-04-17 16:23:55 -05:00
adisbladis 04afb68ad7
systemfd: init at 0.3.0 2020-04-17 22:10:18 +01:00
Graham Christensen e42312e354
Merge pull request #85183 from Xe/zig-0.6.0
zig: upgrade to 0.6.0
2020-04-17 15:17:45 -04:00
Peter Simons e9687df24a
Merge pull request #85178 from NixOS/haskell-updates
Update Haskell package set to LTS 15.8 (plus other fixes)
2020-04-17 21:02:58 +02:00
Matthieu Coudron 839263d558 termpdf.py: init at 2019-09-30
This is a pdf reader for the terminal kitty.
2020-04-17 21:01:17 +02:00
Matthieu Coudron c881dd5e68 pythonPackages.pagelabels: init at 1.2.0
Used in termpdf I want to package.
2020-04-17 21:01:17 +02:00
Matthieu Coudron c0a498b5d5 pythonPackages.pdfrw: init at 0.4.0 2020-04-17 21:01:17 +02:00
Anders Kaseorg 4fdc455543
mesa-demos: init at 8.4.0 (#74310)
* mesa-demos: init at 8.4.0

Signed-off-by: Anders Kaseorg <andersk@mit.edu>

* Update pkgs/tools/graphics/mesa-demos/default.nix

Co-Authored-By: Doron Behar <doron.behar@gmail.com>
2020-04-17 14:00:48 -05:00
Gabor Greif 7932fb22cb ghcHEAD: bump to 8.11.20200403 (#84217)
* ghcHEAD: bump to 8.11.20200403

* ghcHead: reduce diff vs. 8.10.1

dontAddExtraLibs was removed by accident (IMO) in ea19a8ed1e

* ghcHEAD: add ability to use system libffi

- enable nixpkgs' libffi
- minimise diffs against 8.10.1
- remove patching

* remove configure warning about --with-curses-includes

configure: WARNING: unrecognized options: --with-curses-includes
2020-04-17 20:50:48 +02:00
Emily 0d4f35efd4 linux_*_hardened: use linux-hardened patch set
This is an updated version of the former upstream,
https://github.com/AndroidHardeningArchive/linux-hardened, and provides
a minimal set of additional hardening patches on top of upstream.

The patch already incorporates many of our hardened profile defaults,
and releases are timely (Linux 5.5.15 and 5.6.2 were released on
2020-04-02; linux-hardened patches for them came out on 2020-04-03 and
2020-04-04 respectively).
2020-04-17 16:13:39 +01:00
Jörg Thalheim a7b3a6982a
Merge pull request #68171 from rileyinman/postcss-cli 2020-04-17 15:24:37 +01:00
adisbladis 98be297deb
Merge pull request #82651 from adisbladis/mopidyPackages
mopidy: Create a mopidyPackages set
2020-04-17 15:44:22 +02:00
Michael Fellinger 056778b315
crystal: 0.31 -> 0.34 (#85432)
* crystal: 0.31 -> 0.34

* crystal: use latest llvm

* crystal: skip tests for 0.33
2020-04-17 21:04:33 +08:00
Graham Christensen b76e3eab18
Merge pull request #84153 from colemickens/nixpkgs-obs-v4lsink
obs-v4l2sink: init at unstable-20181012
2020-04-17 08:29:30 -04:00
adisbladis 5340ebe085
mopidy: Create a mopidyPackages set
This is to avoid mixing python versions in the same plugin closure.
2020-04-17 12:39:03 +01:00
adisbladis 83cb22963b
mopidy: Move mopidy default.nix to mopidy.nix
This is in anticipation of a mopidyPackages set
2020-04-17 12:39:03 +01:00
Timo Kaufmann 42ca7c114e
Merge pull request #85176 from timokau/zimports-init
python.pkgs.zimports: init at 0.2.0
2020-04-17 09:43:12 +00:00
Linus Heckemann 6b23355abb
Merge pull request #85307 from xaverdh/firefox-plugins-cleanup
firefox-wrapper: remove dead npapi plugin code
2020-04-17 07:32:41 +02:00
Riley Inman 523152f8c7 postcss-cli: init at 7.1.0 2020-04-17 01:17:07 -04:00
Zakkor 13c58fbbf4 upwork: init at 5.3.3-883 2020-04-16 14:45:30 -07:00
Dominik Xaver Hörl c415d67284 mozilla-plugins: remove all npapi plugins except for flash player
Firefox from version 52 onwards no longer supports npapi plugins (see https://support.mozilla.org/en-US/kb/npapi-plugins).
2020-04-16 23:04:51 +02:00
sternenseemann 99ac3ce2bf ocamlPackages.tls: 0.10.4 -> 0.11.1
This update contains a switch to the dune build system as well as a
switch from nocrypto to mirage-crypto.
2020-04-16 19:57:35 +02:00
Oleksii Filonenko 90cd0a6334
packet-cli: init at 0.0.6 2020-04-16 18:21:21 +03:00
Benjamin Hipple b4c36fe436
Merge pull request #84448 from lbpdt/feature/init-node-problem-detector
node-problem-detector: init at 0.8.1
2020-04-16 09:46:29 -04:00
José Romildo Malaquias 4b596ca254
Merge pull request #85304 from romildo/common-updater
common-updater: add update script to all-packages
2020-04-16 08:05:18 -03:00
Jan Tojnar 3d8e436917
Merge branch 'master' into staging-next 2020-04-16 10:09:43 +02:00
xrelkd 9ce430fc38 tinygo: 0.12.0 -> 0.13.0 2020-04-16 10:20:02 +08:00
José Romildo Malaquias 5aad6a361d common-updater: add update script to all-packages 2020-04-15 23:02:33 -03:00
Ben Wolsieffer 9693911c5a g2o: unstable-2019-04-07 -> 20200410 2020-04-15 19:57:13 -04:00
José Romildo Malaquias cfa1718220
Merge pull request #85233 from romildo/upd.humanity-icon-theme
humanity-icon-theme: init at 0.6.15
2020-04-15 18:05:11 -03:00
Jan Tojnar 1fade973fc
libjcat: init at 0.1.1 2020-04-15 20:30:06 +02:00
Dmitry Kalinkin 593fd37ce6 wpsoffice: switch to autoPatchelfHook, update dependencies 2020-04-15 13:52:49 -04:00
Vincent Laporte 238bd2a888
Revert "[Don’t merge] Recurse into OCaml packages"
This reverts commit e16c7dae25.
2020-04-15 19:06:05 +02:00
Vincent Laporte e16c7dae25
[Don’t merge] Recurse into OCaml packages 2020-04-15 18:57:42 +02:00
Ryan Mulligan 5b36111f3c
Merge pull request #85238 from ryantm/linode-cli
linode-cli: remove deprecated perl version, init python version at 2.14.1
2020-04-15 09:22:45 -07:00
Ryan Mulligan ccd6892678 linode-cli: remove deprecated perl version, init python version at 2.14.1 2020-04-15 09:19:34 -07:00
Timo Kaufmann c6ca626b4b
Merge pull request #83537 from puzzlewolf/line-awesome
line-awesome: init at 1.3.0
2020-04-15 14:19:58 +00:00
puzzlewolf 8930a67d19 line-awesome: init at 1.3.0 2020-04-15 15:35:51 +02:00
sternenseemann 29a98f2be1
ocamlPackages.ounit2: init at 2.2.2 2020-04-15 15:01:36 +02:00
Daniel Fullmer 1c951b1484 hcxdumptool: init at 6.0.5 2020-04-14 20:18:07 +02:00
José Romildo Malaquias 4e60f3040e humanity-icon-theme: init at 0.6.15 2020-04-14 14:01:47 -03:00
Ben Darwin 9b83c440f6 python3Packages.mayavi: build for Python 3 instead of Python 2
- switch from wxPython to Qt5
2020-04-14 12:43:56 -04:00
sternenseemann f234b2bce7
ocamlPackages.mirage-flow-unix/-combinators: init at 2.0.1 2020-04-14 18:15:10 +02:00
sternenseemann 7538b79607
ocamlPackages.mirage-clock-unix: init at 3.0.1 2020-04-14 18:09:02 +02:00
sternenseemann c2db123b21
mirage-crypto{,-rng,-pk}: init at 0.6.2 2020-04-14 18:06:16 +02:00
Kim Lindberger 3dbfa915ab
Merge pull request #85226 from etu/update-phpstan
php.packages.phpstan: 0.12.14 -> 0.12.18
2020-04-14 16:39:56 +02:00
Anderson Torres 143e5f64dd
Merge pull request #84546 from AndersonTorres/create-rs
rs: init at 20200313
2020-04-14 11:09:33 -03:00
Maximilian Bosch 85e15b545a
Merge pull request #85177 from mayflower/sslscan-openssl-ssl3
sslscan: enabling scanning for sslv3
2020-04-14 15:59:37 +02:00
Elis Hirwing 1b1d292d3c
php.packages.phpstan: 0.12.14 -> 0.12.18
Changelog: https://github.com/phpstan/phpstan/releases/tag/0.12.18

Also switch to phpWithExtensions because it complained about missing
extensions when running the binary.
2020-04-14 15:22:13 +02:00
Elis Hirwing 83c9620ac6
php.packages.phpcs: 3.5.3 -> 3.5.4
Changelog:
https://github.com/squizlabs/PHP_CodeSniffer/releases/tag/3.5.4

Also switch to phpWithExtensions because it complained about missing
extensions when running the binary.
2020-04-14 15:15:32 +02:00
Elis Hirwing 2e71139235
php.packages.phpcbf: 3.5.3 -> 3.5.4
Changelog:
https://github.com/squizlabs/PHP_CodeSniffer/releases/tag/3.5.4

Also switch to phpWithExtensions because it complained about missing
extensions when running the binary.
2020-04-14 15:14:26 +02:00
worldofpeace c92a00ccbf
Merge pull request #84898 from prusnak/jitsi-meet-electron
jitsi-meet-electron: init at 2.0.0
2020-04-14 08:05:43 -04:00
AndersonTorres a2ebba328e rs: init at 20200313 2020-04-14 08:32:11 -03:00
Jörg Thalheim 418b24b133
Merge pull request #77752 from oxalica/rust-analyzer
rust-analyzer: init at unstable-2020-03-09
2020-04-14 10:19:59 +01:00
Rakesh Gupta 90c1406964 pythonPackages.py-multibase: init at 1.0.1 2020-04-14 00:12:52 -07:00
Vincent Laporte ef8ea1e556
Merge pull request #85161 from sternenseemann/irmin
ocamlPackages.irmin*: 2.0.0 -> 2.1.0, add ppx_irmin, ocaml-syntax-shims, index: 1.0.1 -> 1.2.0
2020-04-14 06:43:57 +02:00
zowoq 1a3d41d412
miniserve: build on darwin (#85187) 2020-04-14 00:43:26 -04:00
Vincent Laporte f9c31303b2 ocamlPackages.dns-client: init at 4.4.1 2020-04-14 06:25:03 +02:00
Vincent Laporte 6edabf41b3 ocamlPackages.mirage-stack: init at 2.0.1 2020-04-14 06:25:03 +02:00
Vincent Laporte 32feaeab83 ocamlPackages.mirage-random: init at 2.0.0 2020-04-14 06:25:03 +02:00
Vincent Laporte 66ffbf57c3 ocamlPackages.mirage-protocols: init at 4.0.1 2020-04-14 06:25:03 +02:00
Vincent Laporte 81fa88504b ocamlPackages.mirage-flow: init at 2.0.1 2020-04-14 06:25:03 +02:00
Vincent Laporte 10a73b84d3 ocamlPackages.mirage-device: init at 2.0.0 2020-04-14 06:25:03 +02:00
Vincent Laporte d7ee3bc968 ocamlPackages.mirage-clock: init at 3.0.1 2020-04-14 06:25:03 +02:00
Vincent Laporte ad098ac026 ocamlPackages.randomconv: init at 0.1.3 2020-04-14 06:25:03 +02:00
Vincent Laporte e021f27d75 ocamlPackages.dns: init at 4.4.1 2020-04-14 06:25:03 +02:00
Vincent Laporte b70b03272a ocamlPackages.duration: init at 0.1.3 2020-04-14 06:25:03 +02:00
Benjamin Hipple 1ca2475b0c
Merge pull request #83905 from msm-code/feature/init-ursadb
ursadb: init at v1.2.0
2020-04-13 22:18:59 -04:00
John Ericson 40000ebb4b
Merge pull request #84531 from TravisWhitaker/cross-clang
LLVM: Always pass host/target info to compiler-rt/libstdcxxClang
2020-04-13 22:13:55 -04:00
Travis Whitaker 74f3b25896 LLVM: Always pass host/target info to compiler-rt/libstdcxxClang 2020-04-13 18:49:27 -04:00
Christine Dodrill 841089817d development/compilers/zig: upgrade to 0.6.0 2020-04-13 18:37:09 -04:00
Oleksii Filonenko d196b90e44
_3mux: init at 0.1.0 2020-04-14 00:55:09 +03:00
Pavol Rusnak 91aa477ee7
jitsi-meet-electron: init at 2.0.0 2020-04-13 23:49:32 +02:00
Timo Kaufmann c26ee28613 python.pkgs.zimports: init at 0.2.0
The author gives a pretty good overview of why one would want to use
zimports over other import organizers:

https://github.com/sqlalchemyorg/zimports/tree/0.2.0#zzzeek-why-are-you-writing-one-of-these-there-are-a-dozen-pep8-import-fixers
2020-04-13 21:27:03 +02:00
Robin Gloster f6be629595
sslscan: enabling scanning for sslv3 2020-04-13 21:23:22 +02:00
Roberto Di Remigio fcf009bbb2 highfive: init at 2.2
Co-Authored-By: Jon <jonringer@users.noreply.github.com>
2020-04-13 11:22:02 -07:00
Jan Tojnar cc57640aeb
Merge pull request #84470 from jtojnar/ardour-cleanup
ardour: clean up the expression
2020-04-13 20:10:27 +02:00
Jan Tojnar a04625379a
Merge branch 'master' into staging-next 2020-04-13 18:50:35 +02:00
Rakesh Gupta a9655812a3 pythonPackages.py-multihash: init at 0.2.3 2020-04-13 09:47:48 -07:00
makefu 382fcf9a09 python3Packages.hydra-check: init at 1.1.1 2020-04-13 09:47:18 -07:00
sternenseemann 4ef5c64226 ocamlPackages.ppx_irmin: init at 2.1.0 2020-04-13 17:51:33 +02:00
sternenseemann cdad44ed31 ocamlPackages.ocaml-syntax-shims: init at 1.0.0 2020-04-13 17:51:32 +02:00