Commit graph

50300 commits

Author SHA1 Message Date
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 33c2a76c5e Merge remote-tracking branch 'upstream/master' into staging 2020-04-17 18:40:51 -04: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
Scott Worley 4328c32713 k3d: Fix build: Use the same GCC version for boost dependency 2020-04-17 14:02:43 -07: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 4b706490da
Merge branch 'staging-next' into staging 2020-04-16 10:10:38 +02: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
Oleksii Filonenko 9c51dba6d9
drill: init at 0.5.0 2020-04-15 21:08:20 +03: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
Thibaut Marty c1daf6eab8 herbstluftwm: 0.7.2 -> 0.8.0
Build now relies on cmake.
Added outputs "doc" and "man".
Setting CMAKE_INSTALL_SYSCONF_PREFIX is needed for bash completion
directory, otherwise it tries to put files in /etc/bash_completion.d
2020-04-14 11:04:46 +02: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 c8a6ea5161 Merge remote-tracking branch 'upstream/master' into staging 2020-04-13 22:17:15 -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
Matthew Bauer e520d6af29
Merge pull request #84415 from matthewbauer/mb-cross-fixes-april2020
Cross compilation fixes [april 2020]
2020-04-13 16:48:38 -04:00
squalus 7205bd64a3 ungoogled-chromium: init at 81.0.4044.92-2 2020-04-13 13:17:05 -07: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 b4a6714571
Merge branch 'staging-next' into staging 2020-04-13 18:54:59 +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
Jörg Thalheim a5661135f2
Merge pull request #84096 from DieGoldeneEnte/llvm-latest
llvmPackages_latest: llvm9->llvm10
2020-04-13 16:48:45 +01:00
Nikolay Korotkiy 6f6d2124fc
gpsbabel-gui: init at 1.6.0 2020-04-13 17:12:20 +02:00
Mario Rodas ee90904d5e
Merge pull request #84636 from filalex77/tydra-1.0.2
tydra: init at 1.0.2
2020-04-13 08:40:46 -05:00
Tim Steinbach 3a8f6159cb
linux: 4.4.218 -> 4.4.219 2020-04-13 08:35:32 -04:00
Holger Wünsche 671733227c
{llvm,polly}-polly: moved to aliases.nix 2020-04-13 14:27:51 +02:00
Graham Christensen ff80d9c19b
Merge pull request #77500 from Emantor/pkg/microcom
microcom: init at 2019.01.0
2020-04-13 07:46:07 -04:00
Jörg Thalheim bc22904a14
Merge pull request #84687 from jonringer/fix-testing-bcachefs
linuxPackages_testing_bcachefs.fwts-efi-runtime: remove failing patch
2020-04-13 12:35:20 +01:00
Rouven Czerwinski b6bddf9e8a microcom: init at 2019.01.0 2020-04-13 13:24:24 +02:00
Daniel Fullmer ca7be74a53 pyrit: init at 2019-12-13 2020-04-13 11:28:01 +02:00
zowoq c217a1a7e8 wal-g: remove Security
Not needed now that Security is propagated via go 0bba7474b3
2020-04-13 13:10:04 +10:00
zowoq 8660728070 Revert "amass: enable on darwin"
This reverts commit 692b890004.

Not needed now that Security is propagated via go 0bba7474b3
2020-04-13 13:08:02 +10:00
zowoq b3ef62bca2 Revert "gotools: fix darwin build"
This reverts commit cb75c0f905.

Not needed now that Security is propagated via go 0bba7474b3
2020-04-13 13:07:12 +10:00
Mario Rodas b7aeeacdc3
Merge pull request #85104 from marsam/update-heroku
heroku: 7.39.0 -> 7.39.2
2020-04-12 18:26:27 -05:00
Maxine E. Aubrey 1d440e1768
worldofgoo: 1.41 -> 1.53
Removes demo (no longer available for download)
Adds i686 support, removing TODOs
2020-04-12 18:21:14 +02:00
Maximilian Bosch 539b7f1e3b
Merge pull request #84975 from Maxdamantus/polyphone
polyphone: init at 2.2.0
2020-04-12 18:10:11 +02:00
Mario Rodas 797d8709b5
Merge pull request #84574 from filalex77/meilisearch-0.9.0
meilisearch: init at 0.9.0
2020-04-12 04:40:15 -05:00
Mario Rodas 55ec864561
heroku: 7.39.0 -> 7.39.2 2020-04-12 04:20:00 -05:00
José Romildo Malaquias a4b7440f41 qtemu: init at 2.1 2020-04-11 18:42:05 -03:00
Elis Hirwing 61ab265643
Merge pull request #84993 from talyz/pdo_mysql_socket
php.extensions.pdo_mysql: Set default socket location
2020-04-11 21:12:31 +02:00
Mario Rodas f5867d86fe
Merge pull request #84982 from endocrimes/nomad-0.11.x
nomad: 0.10.5 -> 0.11.0
2020-04-11 13:14:36 -05:00
Benjamin Hipple 7b1f4dc454
Merge pull request #84880 from pmiddend/fcppt-to-3.5.0
fcppt: 3.2.2 -> 3.5.0
2020-04-11 11:55:09 -04:00
talyz d85bf2f5b7
php.extensions.pdo_mysql: Set default socket location
Set the default socket location to match the one used by the MySQL
module, so PHP programs using pdo_mysql don't have to specify this
themselves.
2020-04-11 14:27:06 +02:00
Danielle Lancashire 064268831b
nomad: 0.10.5 -> 0.11.0
This commit migrates the Nomad package from the 0.10.x line of releases
to 0.11.X.

This allows us to also bump the version of Go that is used to 1.14.x.
NOTE: 1.14.x will be needed for the rest of the 0.11.x releases as Nomad
only bumps patch versions of Go within a release series.

CHANGELOG:

FEATURES:

    Container Storage Interface [beta]: Nomad has expanded support
    of stateful workloads through support for CSI plugins.
    Exec UI: an in-browser terminal for connecting to running allocations.
    Audit Logging (Enterprise): Audit logging support for Nomad
    Enterprise.
    Scaling APIs: new scaling policy API and job scaling APIs to support external autoscalers
    Task Dependencies: introduces lifecycle stanza with prestart and sidecar hooks for tasks within a task group

BACKWARDS INCOMPATIBILITIES:

    driver/rkt: The Rkt driver is no longer packaged with Nomad and is instead
    distributed separately as a driver plugin. Further, the Rkt driver codebase
    is now in a separate
    repository.

IMPROVEMENTS:

    core: Optimized streaming RPCs made between Nomad agents [GH-7044]
    build: Updated to Go 1.14.1 [GH-7431]
    consul: Added support for configuring enable_tag_override on service stanzas. [GH-2057]
    client: Updated consul-template library to v0.24.1 - added support for working with consul connect. Deprecated vault_grace [GH-7170]
    driver/exec: Added no_pivot_root option for ramdisk use [GH-7149]
    jobspec: Added task environment interpolation to volume_mount [GH-7364]
    jobspec: Added support for a per-task restart policy [GH-7288]
    server: Added minimum quorum check to Autopilot with minQuorum option [GH-7171]
    connect: Added support for specifying Envoy expose path configurations [GH-7323] [GH-7396]
    connect: Added support for using Connect with TLS enabled Consul agents [GH-7602]

BUG FIXES:

    core: Fixed a bug where group network mode changes were not honored [GH-7414]
    core: Optimized and fixed few bugs in underlying RPC handling [GH-7044] [GH-7045]
    api: Fixed a panic when canonicalizing a jobspec with an incorrect job type [GH-7207]
    api: Fixed a bug where calling the node GC or GcAlloc endpoints resulted in an error EOF return on successful requests [GH-5970]
    api: Fixed a bug where /client/allocations/... (e.g. allocation stats) requests may hang in special cases after a leader election [GH-7370]
    cli: Fixed a bug where nomad agent -dev fails on Windows [GH-7534]
    cli: Fixed a panic when displaying device plugins without stats [GH-7231]
    cli: Fixed a bug where alloc exec command in TLS environments may fail [GH-7274]
    client: Fixed a panic when running in Debian with /etc/debian_version is empty [GH-7350]
    client: Fixed a bug affecting network detection in environments that mimic the EC2 Metadata API [GH-7509]
    client: Fixed a bug where a multi-task allocation maybe considered healthy despite a task restarting [GH-7383]
    consul: Fixed a bug where modified Consul service definitions would not be updated [GH-6459]
    connect: Fixed a bug where Connect enabled allocation would not stop after promotion [GH-7540]
    connect: Fixed a bug where restarting a client would prevent Connect enabled allocations from cleaning up properly [GH-7643]
    driver/docker: Fixed handling of seccomp security_opts option [GH-7554]
    driver/docker: Fixed a bug causing docker containers to use swap memory unexpectedly [GH-7550]
    scheduler: Fixed a bug where changes to task group shutdown_delay were not persisted or displayed in plan output [GH-7618]
    ui: Fixed handling of multi-byte unicode characters in allocation log view [GH-7470] [GH-7551]
2020-04-11 12:52:09 +02:00
Maximilian Bosch 529465d171
Merge pull request #84078 from petersjt014/master
catcli: init at 0.5.13
2020-04-11 10:29:10 +02:00
Josh Peters aa84e476da catcli: init at 0.5.13 2020-04-11 02:22:47 -05:00
Philipp Middendorf 7af039befe metal: init at 2.1.1 2020-04-11 08:50:48 +02:00
Max Zerzouri ab65cb50c8 polyphone: init at 2.2.0 2020-04-11 17:33:45 +12:00
Doron Behar 94c416ccf4 gjo: init at 1.0.2 2020-04-10 23:47:13 +03:00
Marco Orovecchia 2467e22bdf pythonPackages.HAP-python: init at 2.7.0 2020-04-10 13:03:28 -07:00
Marco Orovecchia 6e72b95a93 pythonPackages.aioharmony: init at 0.2.1 2020-04-10 12:17:42 -07:00
Michael Reilly 84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Jörg Thalheim 87d3217761
Merge pull request #84858 from doronbehar/improve-nerd-fonts
nerdfonts: make it easier to configure and build
2020-04-10 14:01:38 +01:00
Jan Tojnar 55a5c128d4
Merge branch 'staging-next' into staging 2020-04-10 12:13:27 +02:00
Jan Tojnar 1ab03c3a76
Merge branch 'master' into staging-next 2020-04-10 12:12:56 +02:00
Doron Behar 4ab8ffe187 terminus-nerdfont & incosolata-nerdfont: use generic nerdfonts drv 2020-04-10 11:29:01 +03:00
Marco Orovecchia 6fcf77e87a pythonPackages.pynanoleaf: init at 0.0.5 2020-04-10 01:06:23 -07:00
Ben Darwin 0dd910d470 python3Packages.graspy: init at 0.2 2020-04-10 00:08:42 -07:00
Vladimír Čunát f2198c46b2
Merge #84279: libjpeg(_turbo): 2.0.3 -> 2.0.4 (in staging) 2020-04-10 09:02:21 +02:00
Cole Mickens e24e8da336 libjpeg_turbo: 2.0.3 -> 2.0.4 2020-04-09 17:50:26 -07:00
Aaron Andersen 540e256d5b
Merge pull request #84830 from deshaw/contrib/perl-convertuu
perlPackages.ConvertUU: init at 0.5201
2020-04-09 19:00:55 -04:00
Aaron Andersen 0888749180
Merge pull request #84832 from deshaw/contrib/perl-module-compile
perlPackages.ModuleCompile: init at 0.37
2020-04-09 18:55:24 -04:00
worldofpeace 939fcdcbdd
Merge pull request #84817 from pbogdan/libvirt-6.2.0
libvirt: 6.1.0 -> 6.2.0
2020-04-09 14:38:41 -04:00
Matt Huszagh fc66192b37 fparser: init at 4.5.1 2020-04-09 11:28:21 -07:00
Jonathan Ringer e8f668185e leo-editor: add qt support 2020-04-09 10:47:54 -07:00
Rakesh Gupta 6a6cb2bd70 pythonPackages.varint: init at 1.0.2 2020-04-09 10:16:08 -07:00
Souvik Sen 2c3b09b812 perlPackages.ModuleCompile: init at 0.37 2020-04-09 12:57:02 -04:00
Mario Rodas c11dd7afad
Merge pull request #84784 from r-ryantm/auto-update/s3cmd
s3cmd: 2.0.2 -> 2.1.0
2020-04-09 11:51:45 -05:00
Souvik Sen 7d66b5bf0f perlPackages.ConvertUU: init at 0.5201 2020-04-09 12:51:26 -04:00
Mario Rodas ab1a184de3
Merge pull request #82267 from zaninime/sane-airscan
sane-airscan: init at 0.9.17
2020-04-09 10:51:09 -05:00
Aaron Andersen d105fbc8c9
Merge pull request #84609 from deshaw/contrib/perl-extutilsf77
perlPackages.ExtUtilsF77: init at 1.23
2020-04-09 09:46:16 -04:00
s1341 71a768a6e8
zplug: init at 2.4.2 2020-04-09 11:55:40 +02:00
Piotr Bogdan 02c5c39c30 perlPackages.SysVirt: 6.1.0 -> 6.2.0 2020-04-09 10:38:36 +01:00
Mario Rodas d20690b0d0
s3cmd: use python3 2020-04-09 04:20:00 -05:00
Peter Hoeg f14b43a54c
Merge pull request #84716 from peterhoeg/p/g15daemon
g15daemon: init at 1.9.5.3
2020-04-09 09:56:26 +08:00
Maximilian Bosch 20b2b79b4d
Merge pull request #84715 from filalex77/monolith-2.2.2
monolith: init at 2.2.2
2020-04-09 00:53:59 +02:00
Maximilian Bosch e8a4b9fe9b
Merge pull request #84501 from Ma27/bump-hydra
hydra: 2020-03-24 -> 2020-04-07
2020-04-08 20:08:29 +02:00
Rakesh Gupta b1aca4f66a pythonPackages.morphys: init at 1.0 2020-04-08 11:05:54 -07:00
s1341 f1090bdaf8 page: init at 2.3.4 2020-04-08 10:50:05 -07:00
Rakesh Gupta 9449ee6c01 pythonPackages.python-baseconv: init at 1.2.2 2020-04-08 10:49:38 -07:00
Jonathan Ringer 37be0ab53b Revert "perlPackages.XMLParser: 2.46 -> 2.44"
This reverts commit ca04f87ff5.
2020-04-08 10:17:13 -07:00
Jörg Thalheim b3ba16771d
Merge pull request #83858 from ak3n/fix_starman_darwin
perlPackages.starman: add shortenPerlShebang on darwin
2020-04-08 16:38:30 +01:00
Jan Tojnar 521ddb1397
Merge pull request #83400 from jtojnar/malcontent-0.7
malcontent: 0.6.0 → 0.7.0
2020-04-08 17:38:17 +02:00
Jan Tojnar f3d1333f0d
malcontent-ui: split from malcontent
The 0.7.0 update allows us to split the package.
2020-04-08 17:08:15 +02:00
Jan Tojnar 044a1f03db
Merge pull request #83163 from lasandell/shortwave-1.0.1
shortwave: init at 1.0.1
2020-04-08 17:02:57 +02:00
Luke Sandell a74ecff70a shortwave: init at 1.0.1 2020-04-08 09:44:30 -05:00
Peter Hoeg 8cbe9f03f9
Merge pull request #81780 from volth/patch-387
libwebsockets: 3.2.0 -> 3.2.2; init as 4.0.0
2020-04-08 22:32:43 +08:00
Jan Tojnar b7243c79c8
Merge pull request #84698 from jtojnar/gnome2-cleanups
gnome2 cleanups
2020-04-08 15:58:33 +02:00
Peter Hoeg 0669cd72ae g15daemon: init at 1.9.5.3 2020-04-08 20:49:49 +08:00
Oleksii Filonenko 457900c7c8 monolith: init at 2.2.2 2020-04-08 15:48:18 +03:00
Silvan Mosberger b293421a69
Merge pull request #84129 from Infinisil/removing-python-from-grub
Support removing python from zfs/grub closure
2020-04-08 12:53:28 +02:00
Jan Tojnar af476597c0
python3.pkgs.libmodulemd: init bindings 2020-04-08 12:32:39 +02:00
Jan Tojnar bd16668567
libreoffice-still: drop gnome2 dependencies
They are not needed any more:

* ORBit2: a219edfbb6
* GConf: 3cf557c12d
* gnome_vfs: b40b601007
2020-04-08 10:32:22 +02:00
Jan Tojnar 14be4ca20a
lingot: 0.9.1 → 1.0.1
https://savannah.nongnu.org/forum/forum.php?forum_id=9190
2020-04-08 10:32:21 +02:00
Jan Tojnar ba2b0bdc7d
relfs: drop
It depends on old cruft and was broken for over four years.
2020-04-08 10:32:21 +02:00
Jan Tojnar 0195347f5f
beast: drop
It depends on ton of cruft, has been broken for three years and upstream switched to electron 🙈
2020-04-08 10:32:20 +02:00
oxalica e33256ef24
Merge remote-tracking branch 'channels/nixos-unstable' into rust-analyzer 2020-04-08 14:22:56 +08:00
Jonathan Ringer 09d38115bf
linuxPackages_testing_bcachefs.fwts-efi-runtime: remove failing patch 2020-04-07 19:34:04 -07:00
Drew Risinger 42a1271047 pythonPackages.IBMQuantumExperience: remove deprecated package
Package was deprecated, and effectively replaced by
pythonPackages.qiskit-ibmq-provider.
2020-04-07 18:41:16 -07:00
Drew Risinger 0261e874d6 pythonPackages.ipyvuetify: init at 1.2.2 2020-04-07 18:41:16 -07:00
Drew Risinger 2e231d51ec pythonPackages.ipyvue: init at 1.3.1 2020-04-07 18:41:16 -07:00
Yves Fischer 25c3d0da53
qcad: init at 3.24.2.1 (#81209)
Co-authored-by: zimbatm <zimbatm@zimbatm.com>
2020-04-07 21:46:50 +00:00
John Ericson fd85e86232
Merge pull request #75132 from samueldr/fix/cross/perl-xmlparser
perlPackages.XMLParser: Work around cross-compilation regression
2020-04-07 17:26:17 -04:00
Matthias Beyer e4a7fe8f4b python3Packages.flask-reverse-proxy-fix: init at 0.2.1
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-04-07 12:18:22 -07:00
Jan Tojnar 3f7515cb8c
ardour: clean up the expression
* Remove unneeded dependencies
* Stop vendoring other dependencies (fluidsynth, hidapi, libltc, qm-dsp)
* Fix using incorrect libusb version (libusb package is just a legacy compat layer)
* Move build-time dependencies to nativeBuildInputs
* Install freedesktop files & man page
* Drop libintl replacement that no longer applies
2020-04-07 20:26:24 +02:00
Jan Tojnar 1ff54d019f
qm-dsp: init at 1.7.1 2020-04-07 20:26:23 +02:00
Jan Tojnar 602bf811c1
kissft: init at 131 2020-04-07 20:26:23 +02:00
Andreas Rammhold 80d0a401d0
Merge pull request #84584 from andir/firefox
firefox: 74.0.1 -> 75.0 and related updates
2020-04-07 20:05:14 +02:00
Oleksii Filonenko 02f3a1ff52
tydra: init at 1.0.2 2020-04-07 20:28:19 +03:00
Timo Kaufmann 0382ea8302
Merge pull request #81919 from xzfc/cached-nix-shell
cached-nix-shell: init at 0.1.2
2020-04-07 16:06:14 +00:00
Albert Safin 821527fae8 cached-nix-shell: init at 0.1.2 2020-04-07 15:36:22 +00:00
Oleksii Filonenko 7a4fc7c2c7 meilisearch: init at 0.9.0 2020-04-07 18:08:54 +03:00
Souvik Sen 87c7632877 perlPackages.ExtUtilsF77: init at 1.23 2020-04-07 09:57:54 -04:00
Peter Hoeg 0c7ec50297 elisa: move into kdeApplications
elisa is now part of the upstream kdeApplications bundle
2020-04-07 20:53:09 +08:00
Maximilian Bosch 0f5c38feed
hydra: 2020-03-24 -> 2020-04-07
Also removed `pkgs.hydra-flakes` since flake-support has been merged
into master[1]. Because of that, `pkgs.hydra-unstable` is now compiled
against `pkgs.nixFlakes` and currently requires a patch since Hydra's
master doesn't compile[2] atm.

[1] https://github.com/NixOS/hydra/pull/730
[2] https://github.com/NixOS/hydra/pull/732
2020-04-07 14:11:12 +02:00
Andreas Rammhold 1859b5a5ae
libvpx_1_8: init at 1.8.2
Adding this as a new attribute as software is likely going to break when
we switch the default from the 1.7 branch to 1.8.
2020-04-07 13:27:26 +02:00
Vincent Laporte dbc8a54ce5
jackline: use OCaml 4.08 2020-04-07 11:43:04 +02:00
Maciej Krüger 4e71d7ed46 pythonPackages.pam: init at 1.8.4 2020-04-06 21:07:33 -07:00
Mario Rodas 55d2a340d4
Merge pull request #84461 from marsam/fix-libbluray-build
libbluray: fix build on darwin
2020-04-06 20:13:09 -05:00
Maximilian Bosch 183aeb2df2
Merge pull request #84520 from herrwiese/for-master/zsh-nix-shell
zsh-nix-shell: init at (unstable-)2019-12-20
2020-04-07 01:53:50 +02:00
Maximilian Bosch b7fa0af10c
Merge pull request #84495 from doronbehar/package-gmailctl
gmailctl: init at 0.6.0
2020-04-07 01:42:51 +02:00
Andreas Wiese f4e273dbac zsh-nix-shell: init at (unstable-)2019-12-20 2020-04-07 01:00:58 +02:00
Timo Kaufmann 5d3f4e9c0b
Merge pull request #84457 from vbgl/ocaml-gettext-0.4.1
ocamlPackages.ocaml_gettext: 0.3.8 → 0.4.1
2020-04-06 21:52:01 +00:00
Matthew Bauer 7cc40e15e4 treewide/nixos: use stdenv.cc.libc instead of glibc when available
This prevents duplication in cross-compiled nixos machines. The
bootstrapped glibc differs from the natively compiled one, so we get
two glibc’s in the closure. To reduce closure size, just use
stdenv.cc.libc where available.
2020-04-06 16:36:27 -04:00
Timo Kaufmann ae55e4ec3b
Merge pull request #83447 from drewrisinger/dr-pr-python-qiskit-aqua
python3Packages.qiskit-aqua: init at 0.6.5
2020-04-06 17:47:31 +00:00
Wael Nasreddine a5e6fa6d8e
bazel-gazelle: init at 0.20.0 (#84222) 2020-04-06 10:42:53 -07:00
Doron Behar 85bf628911 gmailctl: init at 0.6.0 2020-04-06 20:02:40 +03:00
Drew Risinger 2553798f93 python3Packages.qiskit-aqua: init at 0.6.5
Qiskit Aqua: An extensible library of quantum computing algorithms.

This commit follows the new Qiskit scheme of breaking one large package
into smaller packages (terra, aer, etc), and then having a single
meta-package "qiskit" that comprises them.
2020-04-06 12:01:35 -04:00
Vincent Laporte c0086a5c2a
ocamlPackages.ocaml_gettext: 0.3.8 → 0.4.1 2020-04-06 13:57:21 +02:00
Marek Mahut c392599be3
Merge pull request #84218 from equirosa/tut
tut: init at 0.0.2
2020-04-06 12:36:05 +02:00
Mario Rodas bee7f216b5
libbluray: fix build on darwin 2020-04-06 04:20:00 -05:00
Flakebi 9acb7daac2 spirv-cross: init at 2020-04-03 2020-04-06 10:12:49 +02:00
Louis Blin 511cb624b7 node-problem-detector: init at 0.8.1
Package is missing, built from Golang sources on GitHub.
2020-04-06 08:35:22 +01:00
Frederik Rietdijk 2420184727 Merge staging into staging-next 2020-04-06 08:54:28 +02:00
Holger Wünsche c4afa32b29
llvmPackages_latest: llvm9->llvm10
since llvm10 is now the newest release
now throws an error if llvm-polly or clang-polly is build, since polly
is enabled by default.
2020-04-06 08:27:56 +02:00
José Romildo Malaquias 9908785fa7
Merge pull request #84230 from romildo/upd.gnome-icon-theme
gnome2.gnome_icon_theme: 2.91.93 -> 3.12.0
2020-04-05 22:42:58 -03:00
José Romildo Malaquias 737586bf4f gnome2.gnome-icon-theme: move to pkgs/data/icons 2020-04-05 22:14:23 -03:00
Elis Hirwing 3b6539896b
Merge pull request #83896 from etu/slim-down-default-php-v3
PHP: Make the default package more sane [v3]
2020-04-05 20:00:03 +02:00
Elis Hirwing 8d2e5d5cd6
php.extensions.pthreads: Reintroduce pthreads for php72 and php73 2020-04-05 16:46:24 +02:00
Elis Hirwing 102aac631b
php.extensions.pinba: Reintroduce pinba for php72, php73 and php74 2020-04-05 16:46:11 +02:00
talyz b5c59cebc6
php: Document withExtensions + general improvements 2020-04-05 16:46:05 +02:00
Elis Hirwing a2099156ec
php: split php.packages to php.packages and php.extensions
So now we have only packages for human interaction in php.packages and
only extensions in php.extensions. With this php.packages.exts have
been merged into the same attribute set as all the other extensions to
make it flat and nice.

The nextcloud module have been updated to reflect this change as well
as the documentation.
2020-04-05 16:45:17 +02:00
talyz fe4d173cb2
php.packages: Fix and clean up external extensions
Fix extensions that were broken by the extension refactoring and
remove pthreads and pinba, which had asserts which broke evaluation,
were in need of refactoring and of dubious value.
2020-04-05 16:44:37 +02:00
talyz 90dcab948c
php.packages: Use derivations for internalDeps in mkExtension
Make mkExtension put headers in the dev output and use them, instead of
a different part of the current source tree, when referring to another
extension by using internalDeps.

This means external extensions can be built against the internal ones.
2020-04-05 16:44:01 +02:00
talyz b1106a1851
phpPackages: Move phpPackages to php.packages
This means php packages can now refer to other php packages by looking
them up in the php.packages attribute and gets rid of the internal
recursive set previously defined in php-packages.nix. This also means
that in applications where previously both the php package and the
corresponding version of the phpPackages package set had to be
specified, the php package will now suffice.

This also adds the phpWithExtensions parameter to the
php-packages.nix, which can be used by extensions that need a fully
featured PHP executable.
2020-04-05 16:43:50 +02:00
talyz 14bfb844d6
php: Make mkExtension pass on additional args to mkDerivation 2020-04-05 16:43:43 +02:00
Benjamin Hipple c7af5ac9c9
Merge pull request #84281 from misuzu/kmon-init
kmon: init at 1.0.0
2020-04-05 09:56:31 -04:00
Euan Kemp e370711ad0 k3s: init at 1.17.3+k3s1
This packages k3s as a single self-contained binary (as upstream k3s
does), but without having to download any impure already-built binaries.

The upstream packaging scripts are used. Due to k3s's rather complicated
packaging arrangement, this ends up being a rather long derivation.
2020-04-05 15:34:18 +02:00
Vincent Laporte d6a8d0ca5b coq_8_11: 8.11.0 → 8.11.1 2020-04-05 15:32:32 +02:00
Frederik Rietdijk 98cefdd37f
Merge pull request #83155 from roastiek/alsa-upgrade
alsa-lib: 1.1.9 -> 1.2.2 and new alsa conf packages
2020-04-05 13:17:16 +02:00
Frederik Rietdijk e50c67ad7e
Merge pull request #83618 from NixOS/staging-next
Staging next
2020-04-05 13:13:21 +02:00
misuzu 220ce926b3 kmon: init at 1.0.0 2020-04-05 13:28:48 +03:00
Eelco Dolstra 7121160d5b
Merge pull request #84214 from edolstra/update-nix
Update nixUnstable + nixFlakes, remove nix1
2020-04-05 10:20:02 +02:00
Frederik Rietdijk 866c5aa090 Merge master into staging-next 2020-04-05 08:33:39 +02:00
Anderson Torres f0959a7b0c
Merge pull request #84284 from AndersonTorres/update-babashka
babashka: 0.0.71 -> 0.0.78
2020-04-04 22:26:40 -03:00
Eduardo Quiros 20f9dae4f5
tut: init at 0.0.2 2020-04-04 16:22:36 -06:00
AndersonTorres 78cd46512c babashka: 0.0.71 -> 0.0.78 2020-04-04 18:34:09 -03:00
Mario Rodas 48ec5da6ac
zenith: enable on darwin 2020-04-04 16:20:00 -05:00
Eelco Dolstra 5d583db5a2 Remove Nix 1.x 2020-04-04 21:57:15 +02:00
Timo Kaufmann 02b1f2a2de
Merge pull request #83224 from shnarazk/cadical-pr
cadical: init at 1.2.1
2020-04-04 15:44:04 +00:00
Narazaki, Shuji c5a12e33d2 cadical: init at 1.2.1 2020-04-05 00:22:36 +09:00
Maximilian Bosch 384a164a25
Merge pull request #83753 from cole-h/rofi-emoji
rofi-emoji: init at 2.1.2
2020-04-04 16:39:15 +02:00
Maximilian Bosch 5b6d9b2bb6
Merge pull request #84234 from catern/csv
csv2latex: init at 0.22
2020-04-04 14:37:26 +02:00
Timo Kaufmann 696274fae7
Merge pull request #83183 from bbigras/zenith
zenith: init at 0.8.0
2020-04-04 11:41:02 +00:00
Vincent Laporte 4dd89ce0a0 OCaml: default to version 4.09 2020-04-04 13:26:33 +02:00
Marek Mahut b6dbef4759
Merge pull request #81196 from prusnak/certbot
certbot: 1.0.0 -> 1.3.0
2020-04-04 08:18:20 +02:00
Peter Hoeg 919430d9f2
Merge pull request #84212 from prusnak/scummvm-games
scummvm: add broken-sword-25 and dreamweb games
2020-04-04 13:13:28 +08:00
Spencer Baugh 797d90e259 csv2latex: init at 0.22 2020-04-04 00:09:28 -04:00
Pavol Rusnak 2133c106a1
scummvm: add broken-sword-25 and dreamweb games 2020-04-03 23:11:31 +02:00
Chuck dec9ac364a darcs: Fix build (Use old GHC)
This is fixed at upstream's head; this change can be reverted after
darcs cuts a new release (current release is 2.14.2).
2020-04-03 22:00:30 +02:00
Frederik Rietdijk 92124ed660 Merge master into staging-next 2020-04-03 21:54:40 +02:00
Wael Nasreddine 9e55da14fe
prow: 2019-08-14 -> 2020-04-01 (#84055) 2020-04-03 10:09:11 -07:00
Evils ef65b728d3 tuptime: init at 4.1.0 2020-04-03 17:29:56 +02:00
Maximilian Bosch 470b916556
Merge pull request #84186 from matthiasbeyer/update-pulseeffects
pulseeffects: 4.7.1 -> 4.7.2
2020-04-03 16:31:33 +02:00
Mario Rodas 3573d7801c
Merge pull request #84172 from filalex77/kondo-0.3
kondo: init at 0.3
2020-04-03 09:13:16 -05:00
Matthias Beyer fb818c536a pulseeffects: 4.7.1 -> 4.7.2
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-04-03 13:52:59 +02:00
Matthias Beyer 4458697264 boost17x: boost171 -> boost172
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-04-03 13:52:40 +02:00
Matthias Beyer c028978211 boost: init at 1.72.0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-04-03 13:52:06 +02:00
gnxlxnxx 8e6a74e957 swaylock-effects: init at v1.6-0 2020-04-03 13:02:28 +02:00
msm 5160beb886
ursadb: init at v1.2.0 2020-04-03 11:29:05 +02:00
Oleksii Filonenko 72fb30d5cc kondo: init at 0.3 2020-04-03 11:55:56 +03:00
tomberek 939976a929
parallel-full: init SQL and CSV support (#77619)
Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
2020-04-03 09:49:28 +01:00
talyz 8924a7de3d
php: Make buildEnv recursive + take extension deps into account
A slight rewrite of buildEnv which:

1. Makes buildEnv recursively add itself to its output, so that it can
   be accessed from any php derivation.

2. Orders the extension text strings according to their internalDeps
   attribute - dependencies have to be put before dependants in the
   php.ini or they will fail to load due to missing symbols.
2020-04-03 10:11:15 +02:00
talyz 6c810c235d
phpPackages.exts: Run tests by default
The tests for many of the extensions run just fine, for some a small
portion fail. This runs the tests by default and disables the tests
extensions with any failing tests.
2020-04-03 10:11:14 +02:00
talyz 282337799b
php: Build an even slimmer base
This moves yet more extensions from the base build to
phpPackages.ext. Some of the extensions are a bit quirky and need
patching for this to work, most notably mysqlnd and opcache.

Two new parameters are introduced for mkExtension - internalDeps and
postPhpize. internalDeps is used to specify which other internal
extensions the current extension depends on, in order to provide them
at build time. postPhpize is for when patches and quirks need to be
applied after running phpize.

Patch notes:

- For opcache, older versions of PHP have a bug where header files are
  included in the wrong order.

- For mysqlnd, the config.h is never included, so we include it in the
  main header file, mysqlnd.h. Also, the configure script doesn't add
  the necessary library link flags, so we add them to the variable
  configure should have added them to.
2020-04-03 10:11:13 +02:00
Elis Hirwing da8ca2be2f
phpPackages.exts.gmp: Enable on darwin 2020-04-03 10:11:12 +02:00
Elis Hirwing a5f77d6ea2
php-unit: Drop the declaration of the php-unit attributes since they aren't used 2020-04-03 10:11:11 +02:00
Elis Hirwing be7bf5a18d
php-embed: Drop the declaration of the php-embed attributes 2020-04-03 10:11:07 +02:00
Michele Guerini Rocco 0bb17a4b19
Merge pull request #81223 from aaronjanse/init-papermc
papermc: init at 1.15.2r121
2020-04-03 09:15:36 +02:00
Aaron Janse 631fe89c59 papermc: init at 1.15.2r121 2020-04-02 21:33:04 -07:00
Cole Mickens d01c1f35b8 obs-v4l2sink: init at unstable-20181012 2020-04-02 18:42:45 -07:00
Florian Klink 44c20fb83e
Merge pull request #84087 from Izorkin/mariadb-tokudb
mariadb: update build configuration.
2020-04-02 23:44:03 +02:00
Milan 90354cd127
xonotic: split glx, sdl, dedicated, data (#83461)
This has many advantages:
- Each variant can be installed without pulling in the dependencies of the
  other variants, which makes it possible to build an SDL variant
  without X11 dependencies
- Hydra can now build binaries without downloading 1GB of data, so users
  do not have to build them on their own machines
- Users do not have to redownload 1GB of data after each dependency
  update

Includes the following fixes:
- Add dependency on libGL for GLX variant as it will fail in some
  environments otherwise
- Pass -j and -l to make to enable parallel building
- Quote homepage URI and use https
- Add a .desktop file and icons
2020-04-02 21:58:05 +02:00
Silvan Mosberger 12c1fdda09
zfs: Use callPackages instead of callPackage to allow overriding 2020-04-02 21:42:59 +02:00
Eelco Dolstra 74e7ef35fe nix-daemon.nix: Add option nix.registry
This allows you to specify the system-wide flake registry. One use is
to pin 'nixpkgs' to the Nixpkgs version used to build the system:

  nix.registry.nixpkgs.flake = nixpkgs;

where 'nixpkgs' is a flake input. This ensures that commands like

  $ nix run nixpkgs#hello

pull in a minimum of additional store paths.

You can also use this to redirect flakes, e.g.

  nix.registry.nixpkgs.to = {
    type = "github";
    owner = "my-org";
    repo = "my-nixpkgs";
  };
2020-04-02 19:38:00 +02:00
Jonathan Ringer 5c171862b6 git-lfs: 2.8.0 -> 2.10.0 2020-04-02 16:11:45 +00:00
Izorkin 0296e678cf mariadb: add option to build server without tokudb storage 2020-04-02 18:05:04 +03:00
Mario Rodas aa8bd52698
Merge pull request #82558 from tilpner/ncspot-mpris
ncspot: enable MPRIS by default
2020-04-02 08:43:35 -05:00
Jörg Thalheim 46d919f578
Merge pull request #83503 from sternenseemann/apostrophe
uberwriter: renamed to apostrophe
2020-04-02 14:23:49 +01:00
Ivar 318f05f776 xp-pen-g430: init at 20190820 2020-04-02 14:51:43 +02:00
Jörg Thalheim 5b806fe569
Merge pull request #78609 from fishi0x01/fishi0x01/onesixtyone
onesixtyone: init at unstable-2019-12-26
2020-04-02 13:38:23 +01:00
Seebi d343d703c8
rgp: init at 1.7.0.29 (#79343)
Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
2020-04-02 12:49:36 +01:00
Thomas Tuegel 20937a2202
Merge pull request #83152 from s9gf4ult/master
qxmledit: init at 0.9.15
2020-04-02 05:48:06 -05:00
Jörg Thalheim cd3d229eba
Merge pull request #83583 from colemickens/nixpkgs-ha-pkgs-alarmdecoder
pythonPackages.alarmdecoder: init at v1.13.9
2020-04-02 09:47:54 +01:00
Bruno Bigras 6d6f5d1692 zenith: init at 0.8.0 2020-04-02 01:38:10 -04:00
John Ericson 6bf6ec8a96 Merge remote-tracking branch 'upstream/master' into consistent-bazel-ref 2020-04-01 16:16:30 -04:00
John Ericson 6f94f8fd3f bazel-*: Consistently self reference
Using `bazel_self` for self-references makes managing bazel versions
easier: their less risk of changing defaults or copy pasted code for no
versions leading to incorrect self-references.
2020-04-01 16:16:26 -04:00
Drew Risinger 543382d83c pythonPackages.qiskit-ignis: init at 0.2.0
Qiskit Ignis is a toolbox for quantum hardware verification,
noise characterization, and error correction.

This commit follows the new Qiskit scheme of breaking one large package
into smaller packages (terra, aer, etc), and then having a single
meta-package "qiskit" that comprises them.
2020-04-01 09:49:29 -07:00
Vincent Laporte 8e686bacc4 ocamlPackages.ocaml-r: init at 0.2.0 2020-04-01 17:29:30 +02:00
Tim Steinbach 7f56fdd997
linux: Init 5.6.1
Change linux_latest to 5.6
2020-04-01 10:46:02 -04:00
Alyssa Ross 2ed758481c minijail-tools: init at 14
This is built from the same source as minijail, but is for all intents
and purposes a seperate package.  It builds different things, with no
overlap, and is under a different license.
2020-04-01 13:44:28 +00:00
Mario Rodas 3f85d8c912
Merge pull request #83860 from filalex77/sozu-0.11.46
sozu: init at 0.11.46
2020-04-01 08:22:28 -05:00
Matthew Bauer fd6278500b
Merge pull request #83889 from matthewbauer/andyetitmoves-make-unconditional
andyetitmoves: make unconditional
2020-03-31 22:06:45 -05:00
Dennis Gosnell 4c23f68699
Merge pull request #82964 from lilyball/psc-package
psc-package: Stop using haskellPackages to build
2020-04-01 10:39:46 +09:00
Elis Hirwing 96a5e0c928
php: init phpXYbase packages and make the default php extended by default
Also, add opcache to default extensions since it significantly
increases PHP's performance and is by default enabled on Debian based
distributions. Not having it enabled by default results in a puzzling
performance loss for anyone attempting to migrate from Debian/Ubuntu
to NixOS who is unaware of this. Therefore, enable it by default. /talyz
2020-03-31 22:06:45 +02:00
Jan Tojnar dbb4a47de0
Merge branch 'staging-next' into staging 2020-03-31 21:33:00 +02:00
Jan Tojnar 3e0f4e202f
Merge branch 'master' into staging-next 2020-03-31 21:32:15 +02:00
Cole Helbling 7fce01fd6a
rofi-emoji: init at 2.1.2
This plugin is intended to be supplied to the `rofi` wrapper through an
override:

    pkgs.rofi.override { plugins = [ rofi-emoji ]; }
2020-03-31 12:00:54 -07:00
Jan Tojnar 0cb43d3151
Merge pull request #83732 from jansol/xow
xow: init at 0.4
2020-03-31 20:41:17 +02:00
Jan Tojnar 08306f3f26
Merge pull request #83832 from jtojnar/samba-things
Clean up & update samba things
2020-03-31 20:38:45 +02:00
Timo Kaufmann 1b6245b4fb
Merge pull request #82177 from tckmn/add-ipbt
ipbt: init at 20190601.d1519e0
2020-03-31 18:08:15 +00:00
Andy Tockman db397cd2ff ipbt: init at 20190601.d1519e0 2020-03-31 11:43:28 -05:00
Karl Fischer da971031ea
onesixtyone: init at unstable-2019-12-26 2020-03-31 17:50:18 +02:00