Commit Graph

140913 Commits

Author SHA1 Message Date
Austin Seipp
6054dabc11 foundationdb: rework python bindings, build system
FoundationDB uses Python at build time for some code generation.
However, it also has the official python bindings inside the source code
too, and the code for the Python bindings has some of it auto-generated
at compile time.

This made building python packages unattractive: we want to use the
source code generated from the FoundationDB build, but we don't want to
rebuild it. Previously we would override the 'python' input to the
FoundationDB module, but this meant we would do a complete rebuild, as
it was a necessary build time dependency, even though the resulting
generated code itself would not change. Furthermore, FoundationDB
versions < 6.0 don't properly support Python 3 *for the build system*,
though the bindings supported it, so that caused build failures. But the
first effect is the worst: it meant building separate python2 and
python3 packages implied two complete rebuilds of a single FoundationDB
version. This meant rather than 3 FDB builds, we'd do 3*N where N = the
number of major Python versions we support.

Finally, because we did not use pip to generate a wheel that we install
with metadata recorded for the installation, the FoundationDB python
package couldn't be used as an input to other setup.py-based packages:
there would be no recorded metadata in the dist-info folder which would
say this is the foundationdb package. This greatly limits its utility.

To fix all this, we do a few things:

  - Apply some patches to fix the build system with Python 3.x for
    older FoundationDB versions. (This is nice if end-users have
    overridden the global Python version for some reason.)
  - Move python directly into nativeBuildInputs, so it is only a
    build time dependency.
  - Take the python source code from the ./bindings directory and
    tar it up use later after the build is done, so we get to keep
    the generated code. This is the new 'pythonsrc' output from the
    build. This code doesn't change based on whether or not the input
    or resulting package is using Python 2 or 3, it's totally
    deterministic.
  - The build system also patches up the python source code a little,
    so it can be installed directly with setup.py (it needs a little
    stuff that it normally expects the build system to do.)
  - Rework the python package to a separate file that uses
    buildPythonPackage directly. Because the source code is already
    prepared, it needs almost nothing else. Furthermore, this kills
    the override itself for the foundationdb package, meaning rebuilds
    are no longer needed.
  - This package is very simple and just uses foundationdb.pythonsrc
    as its source input. It also ensures a link to libfdb_c.so can
    be found by ctypes (using substituteInPlace)
  - python-packages.nix now just uses callPackage directly.

The net effect of this is, most importantly, that python packages do not
imply a full rebuild of the server source code: building python2 and
python3 packages from a version of FoundationDB now does not need to
override the foundationdb python input, reducing the number of needless
builds. They instead just run setup.py with the given version as input.

The second biggest effect is that wheel metadata is recorded correctly,
meaning dependent-python-packages that want to use the FoundationDB
bindings e.g. from PyPi should now work fine with buildPythonPackage.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-16 20:34:19 -06:00
Austin Seipp
32948a6f3d foundationdb: include fdb.options in .dev for binding generators
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-16 20:22:40 -06:00
Austin Seipp
1629147423 openjdk11: enable ZGC on x86_64-linux
The Z Garbage Collector is a concurrent, scalable, low latency garbage
collector designed to meet extremely-low-pause-time requirements for
small-to-multi-TB heap sizes.

ZGC can be enabled with the magical incantation:

    $ java -XX:+UnlockExperimentalVMOptions -XX:+UseZGC ...

Currently, ZGC is only available for x86_64-linux (though a port for
aarch64-linux may become available at a future time.) There are also a
number of other features that currently aren't present, such as JVMCI
integration (meaning compiler tools like Graal which require JVMCI will
not work with ZGC enabled.)

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-16 20:22:40 -06:00
gnidorah
7142a3a8ec pakcs: 2.0.2-b9 -> 2.0.2 2018-11-17 05:08:21 +03:00
Jörg Thalheim
40449fe1ae
Merge pull request #47175 from avnik/fix/glfw
glfw: hardwire path to libGL.so.1
2018-11-17 01:38:05 +00:00
Jörg Thalheim
d10c66c8ca
Merge pull request #50319 from fuwa0529/update-monero
monero: 0.13.0.3 -> 0.13.0.4
2018-11-17 01:23:08 +00:00
Carles Pagès
424107c490
Merge pull request #50431 from eadwu/nvidia_x11/410.78
nvidia_x11: 410.73 -> 410.78
2018-11-17 02:17:15 +01:00
Jörg Thalheim
b8bb8638f3
Merge pull request #50003 from Mic92/node-10
nodePackages: 8_x -> 10_x
2018-11-17 00:12:52 +00:00
rnhmjoj
88a86f78a3
monero-gui: 0.13.0.3 -> 0.13.0.4 2018-11-17 01:07:08 +01:00
Jörg Thalheim
3c032bbadd
nodePackages: regenerate 2018-11-16 23:41:18 +00:00
Jörg Thalheim
43c8b6309f
Merge pull request #50481 from rnhmjoj/gnash
gnash: remove gstreamer support
2018-11-16 23:40:42 +00:00
Patrick Hilhorst
874b017564 vscode: 1.29.0 -> 1.29.1 (#50462) 2018-11-17 00:22:43 +01:00
c0bw3b
18f95bd6ba mdds: drop 0.7.x and 0.12.x 2018-11-17 00:02:48 +01:00
rnhmjoj
79192b2d05
gnash: remove gstreamer support 2018-11-16 23:56:52 +01:00
Michael Weiss
939bb2189b monetdb: 11.29.7 -> 11.31.11 2018-11-16 23:33:26 +01:00
Franz Pletz
264346bd8c
minishift: 1.25.0 -> 1.27.0 2018-11-16 23:32:06 +01:00
Christian Albrecht
08c3c0094a
minishift: add openshift input
minishift depdends on oc to control the openshift installation.
2018-11-16 23:18:51 +01:00
Aaron Janse
fba452f556
nodePackages: add fkill-clifix
fixes #49308
2018-11-16 21:36:36 +00:00
Christian Rackerseder
525587ce81
nodePackages.cpy-cli: init at 2.0.0
fixes #50303
2018-11-16 21:35:14 +00:00
Jörg Thalheim
25d6dc99bb
nodePackages: 8_x -> 10_x 2018-11-16 21:31:44 +00:00
Jörg Thalheim
d688cedce1
create-cycle-app: unpin nodePackages version 2018-11-16 21:24:26 +00:00
Jörg Thalheim
131f2e93b6
sage: unpin nodePackage version 2018-11-16 21:24:25 +00:00
Kevin Liu
c93b16829c
boinc: 7.8.0 -> 7.14.2 2018-11-16 15:52:22 -05:00
Domen Kožar
e81b1a06be
Add nodePackages_10_x.parcel-bundler 2018-11-16 20:46:19 +00:00
Maximilian Bosch
c59c9a3737
pythonPackages.nose-cov: init at 1.6
Module for coverage reports with Python using nosetests.
2018-11-16 21:41:06 +01:00
Linus Heckemann
d1eb06cb18
Merge pull request #50434 from bcdarwin/nifty_reg
niftyreg: init at 1.3.9; niftyseg: init at 1.0.0
2018-11-16 20:13:12 +01:00
Renaud
9100eb4083
Merge pull request #50465 from romildo/upd.obsidian-2
theme-obsidian2: 2.7 -> 2.8
2018-11-16 20:05:13 +01:00
Jean-Philippe Cugnet
bdc04a7a72
erlangR21: 21.1.1 -> 21.1.2 2018-11-16 20:04:10 +01:00
Renaud
21ca2be9fb
Merge pull request #50461 from mayflower/at-tests
at: run tests
2018-11-16 20:03:55 +01:00
Ben Darwin
cb6d819b93 niftyseg: init at 1.0.0 2018-11-16 12:29:29 -05:00
Ben Darwin
6aa3deeb50 niftyreg: init at 1.3.9 2018-11-16 12:24:53 -05:00
José Romildo Malaquias
65a5931ef5 theme-obsidian2: 2.7 -> 2.8 2018-11-16 15:02:45 -02:00
Jörg Thalheim
348b7b8be9 nixos/netdata: own plugins must the looked up first
Otherwise netdata will not find python modules.
To make sure netdata still pick up our setuid version of apps.plugin
we rename the original executable.
2018-11-16 11:24:27 -05:00
Jörg Thalheim
d417ca7ba9 netdata: Disable files in /etc and /var 2018-11-16 11:24:27 -05:00
Mario Rodas
49ac683e70 netdata: 1.10.0 -> 1.11.0 2018-11-16 11:24:27 -05:00
Jörg Thalheim
feda77de9e
Merge pull request #50457 from romildo/upd.vivaldi
vivaldi: 2.1.1337.36-1 -> 2.1.1337.47-1
2018-11-16 15:45:24 +00:00
Linus Heckemann
55c9afc140 at: run tests 2018-11-16 16:45:08 +01:00
Jörg Thalheim
9c050202a1
Merge pull request #50451 from Mic92/node-springclean-vol2
nodePackages: springclean take 2
2018-11-16 15:29:21 +00:00
Jörg Thalheim
fe191176cf
Merge pull request #50454 from taku0/thunderbird-bin-60.3.1
thunderbird, thunderbird-bin: 60.3.0 -> 60.3.1
2018-11-16 15:26:36 +00:00
Andreas Rammhold
b4f2c7ba8b
Merge pull request #50373 from pbogdan/ff-no-gs
firefoxen: remove unused gstreamer dependencies
2018-11-16 16:25:23 +01:00
Renaud
4d402da500
Merge pull request #50404 from bts/fix-nixnote2-post-install
nixnote2: fix window icon and themes
2018-11-16 16:21:49 +01:00
Jörg Thalheim
64f66db499
Merge pull request #49791 from Gerschtli/add/apcu-bc
php72Packages.apcu_bc: init at 1.0.4
2018-11-16 15:18:01 +00:00
Victor SENE
a70779458a use correct path for read/write configuration 2018-11-16 16:05:02 +01:00
José Romildo Malaquias
b14d1167c9 vivaldi: 2.1.1337.36-1 -> 2.1.1337.47-1 2018-11-16 12:28:38 -02:00
Jörg Thalheim
d59307e54c
Merge pull request #35429 from clacke/racket-full-darwin
racket: on darwin, use libiconv
2018-11-16 14:20:47 +00:00
Jörg Thalheim
a9efcc85cb
nodePackages: regenerate 2018-11-16 14:14:18 +00:00
taku0
917309fa62 firefox: 63.0.1 -> 63.0.3 2018-11-16 23:14:14 +09:00
Jörg Thalheim
f805df3677
Merge pull request #50370 from dywedir/tiled
tiled: 1.2.0 -> 1.2.1
2018-11-16 14:13:45 +00:00
Robert Schütz
62fc9e2526
appdaemon: 3.0.1 -> 3.0.2 (#49581) 2018-11-16 15:06:01 +01:00
taku0
4bb9af228e common-updater, firefox: fix updater for firefox 2018-11-16 23:04:54 +09:00
Robert Schütz
01763ed4a8 abcm2ps: 8.14.0 -> 8.14.1 2018-11-16 15:00:53 +01:00
Robert Schütz
5e0e2e252c home-assistant: 0.82.0 -> 0.82.1 2018-11-16 14:52:05 +01:00
Jörg Thalheim
5632aad473
Merge pull request #50449 from jfrankenau/fix-valentina-mailcap
valentina: don’t copy mailcap file into XDG MIME directory
2018-11-16 11:19:47 +00:00
Jörg Thalheim
9d9ba8f4c1
nodePackages: make generate.sh fail fast on error 2018-11-16 11:15:25 +00:00
Jörg Thalheim
d39baf61eb
nodePackages.webdrvr: remove
project seems dead: https://github.com/uxebu/webdrvr
2018-11-16 11:15:24 +00:00
Jörg Thalheim
03111b63a4
nodePackages.phantomjs: remove
We already have phantomjs/phantomjs2 packaged.
2018-11-16 11:15:24 +00:00
Jörg Thalheim
2b8cde0ce2
nodePackages.parsoid: remove
fork seems unmaintained: https://github.com/abbradar/parsoid
cc @abradar
2018-11-16 11:15:24 +00:00
Michael Weiss
754aa035f6 androidStudioPackages.{dev,canary}: 3.4.0.2 -> 3.4.0.3 2018-11-16 11:45:16 +01:00
Johannes Frankenau
16a7db04aa valentina: don’t copy mailcap file into XDG MIME directory 2018-11-16 10:55:13 +01:00
Jörg Thalheim
69bae93175
nodePackages.node-uptime: remove
project seems unmaintained: https://github.com/fzaninotto/uptime
cc @shlevy
2018-11-16 09:38:34 +00:00
Jörg Thalheim
e4c8fdb545
nodePackages.guifi-earth: remove 2018-11-16 09:38:34 +00:00
Jörg Thalheim
26cb156942
nodePackages.docker-registry-server: remove
project is dead and superseeded by docker-distribution that we have packaged.
2018-11-16 09:38:34 +00:00
Claes Wallin (韋嘉誠)
d3c2ec6f1d Merge remote-tracking branch 'upstream/master' into racket-full-darwin 2018-11-16 15:41:48 +08:00
Will Dietz
db0abe98bf glibc: disable pie hardening, limit to musl for now 2018-11-15 21:55:08 -06:00
Will Dietz
6ebb2c385b ghc: disable pie, for now limit to musl since not default yet elsewhere 2018-11-15 21:55:08 -06:00
Tim Steinbach
70178169fa
dotty: 0.9.0-RC1 -> 0.10.0-RC1 2018-11-15 21:50:13 -05:00
Mario Rodas
71b47005bc gitAndTools.git-absorb: init at 0.3.0 2018-11-15 19:40:22 -05:00
Jörg Thalheim
56a0533128
valauncher: remove
I no longer use/maintain this software.
see: https://github.com/Mic92/valauncher
2018-11-16 00:36:33 +00:00
Jörg Thalheim
e024989531
Merge pull request #50433 from eadwu/jetbrains/20181115
jetbrains: 20181115
2018-11-15 23:48:44 +00:00
Franz Pletz
31bd0df53d
weechatScripts.wee-slack: 2.1.1 => 2.2.0 2018-11-16 00:45:07 +01:00
Franz Pletz
9756e6bc74
Merge pull request #50386 from aij/zfs
zfsUnstable: 0.8.0-rc1 -> 0.8.0-rc2
2018-11-15 23:44:38 +00:00
Sebastien Maret
bc64d58866 astroquery: init at 0.3.8 (#50360)
Co-Authored-By: smaret <sebastien.maret@icloud.com>
2018-11-15 23:11:41 +00:00
Jörg Thalheim
9d53806ef3
Merge pull request #50379 from ptrhlm/anki
anki: 2.0.52 -> 2.1.6-beta1, fixes #46599, fixes #45726
2018-11-15 22:37:15 +00:00
Jörg Thalheim
ad71688bfa
Merge pull request #50430 from eadwu/vscode/1.29.0
vscode: 1.28.2 -> 1.29.0
2018-11-15 22:24:09 +00:00
Edmund Wu
07839a571b
jetbrains.webstorm: 2018.2.5 -> 2018.2.6 2018-11-15 17:20:38 -05:00
Edmund Wu
19fa47c150
jetbrains.pycharm-professional: 2018.2.4 -> 2018.2.5 2018-11-15 17:20:24 -05:00
Edmund Wu
1a2a2aba02
jetbrains.pycharm-community: 2018.2.4 -> 2018.2.5 2018-11-15 17:19:53 -05:00
Edmund Wu
b48f467e1b
jetbrains.idea-ultimate: 2018.2.5 -> 2018.2.6 2018-11-15 17:19:30 -05:00
Edmund Wu
c2bbfa56ed
jetbrains.idea-community: 2018.2.5 -> 2018.2.6 2018-11-15 17:18:58 -05:00
Edmund Wu
2787e2c75e
jetbrains.goland: 2018.2.3 -> 2018.2.4 2018-11-15 17:18:27 -05:00
Edmund Wu
4d20e9999b
jetbrains.datagrip: 2018.2.4 -> 2018.2.5 2018-11-15 17:18:03 -05:00
Edmund Wu
9d1b22a909
jetbrains.clion: 2018.2.5 -> 2018.2.6 2018-11-15 17:17:37 -05:00
Piotr Halama
a30e30432d anki: 2.0.52 -> 2.1.6-beta1 2018-11-15 23:17:31 +01:00
Austin Seipp
d01b0f9d2e libndctl: 61.2 -> 63
This also adds me as the maintainer (as it lacked one previously),
and simplifies the expression quite a bit.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-11-15 16:09:32 -06:00
Renaud
8a1127a7c9
Merge pull request #50406 from coretemp/feature/sops
sops: 3.1.0 -> 3.2.0
2018-11-15 23:04:05 +01:00
Renaud
d554f80b78
Merge pull request #50429 from c0bw3b/pkg/easyrpg
{easyrpg-player,liblcf}: 0.5.3 -> 0.5.4
2018-11-15 23:03:28 +01:00
Edmund Wu
a23e3b0505
vscode: 1.28.2 -> 1.29.0 2018-11-15 16:41:06 -05:00
c0bw3b
83a3cf0166 easyrpg-player: 0.5.3 -> 0.5.4 2018-11-15 22:36:07 +01:00
Edmund Wu
321a64d607
nvidia_x11: 410.73 -> 410.78 2018-11-15 16:33:31 -05:00
Jörg Thalheim
218f12db70
Merge pull request #50324 from asymmetric/solc
solc: 0.4.25 -> 0.5.0
2018-11-15 21:26:32 +00:00
Jörg Thalheim
abb0c81190
z3: restrict to x86_64
it uses x86-only header:

include <immintrin.h>
          ^~~~~~~~~~~~~
compilation terminated.
src/sat/sat_probing.cpp
make: *** [Makefile:182: util/mpz.o] Error 1
make: *** Waiting for unfinished jobs....
src/sat/sat_parallel.cpp
builder for '/nix/store/vd2wkhic8g77izxv659ackh6hcaamic3-z3-4.8.1.drv' failed with exit code 2
cannot build derivation '/nix/store/h5imnjsf31c45l558gw66vyzb0ickc1m-solc-0.5.0.drv': 1 dependencies couldn't be built
error: build of '/nix/store/h5imnjsf31c45l558gw66vyzb0ickc1m-solc-0.5.0.drv' failed
2018-11-15 21:25:53 +00:00
Jörg Thalheim
3516b2dad2
Merge pull request #37658 from pbogdan/gnumake3-remove
gnumake3: remove
2018-11-15 21:12:52 +00:00
Jörg Thalheim
c9578083d0
Merge pull request #50417 from alyssais/nginx
nginx: CVE-2018-16843, CVE-2018-16844 updates
2018-11-15 21:11:18 +00:00
R. RyanTM
a0a885c5cd liblcf: 0.5.3 -> 0.5.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/liblcf/versions
2018-11-15 22:10:22 +01:00
Jörg Thalheim
4b24ab13d6
Merge pull request #50424 from dtzWill/update/flatpak-1.0.5
flatpak: 1.0.4 -> 1.0.5
2018-11-15 21:01:25 +00:00
Jörg Thalheim
38e91173e1
Merge pull request #50414 from jfrankenau/update-reaper
reaper: 5.94 -> 5.961
2018-11-15 20:48:35 +00:00
zimbatm
67dafdb271
Merge pull request #50416 from alyssais/bundler
bundler: 1.16.4 -> 1.17.1
2018-11-15 21:17:31 +01:00
Jörg Thalheim
e317f9f951
Merge pull request #50413 from jfrankenau/update-valentina
valentina: 0.6.0.0a -> 0.6.1
2018-11-15 19:58:37 +00:00
Jörg Thalheim
5eab94fdc3
Merge pull request #50408 from Mic92/rambox
rambox: 0.6.1 -> 0.6.2
2018-11-15 19:50:09 +00:00
Will Dietz
0e218ffc0c flatpak: 1.0.4 -> 1.0.5 2018-11-15 13:16:42 -06:00
hyperfekt
31d72972f7
home-manager: 2018-06-14 -> 2018-11-04 2018-11-15 19:39:23 +01:00
Travis Athougies
d0eb502327 Enable cross compilation for cpython 2.7 (#50245) 2018-11-15 19:36:03 +01:00
Orivej Desh
b633e1b3d4 aws-sdk-cpp: 1.6.20 -> 1.6.52 2018-11-15 18:28:26 +00:00
taku0
fa138b55a6 firefox-bin: 63.0.1 -> 63.0.3 2018-11-16 03:12:13 +09:00
Alyssa Ross
de9026de6e
nginxMainline: 1.15.5 -> 1.15.6
CVE-2018-16843, CVE-2018-16844

https://nginx.org/en/security_advisories.html
2018-11-15 17:52:05 +00:00
Alyssa Ross
1908322d10
nginxStable: 1.14.0 -> 1.14.1
CVE-2018-16843, CVE-2018-16844

https://nginx.org/en/security_advisories.html
2018-11-15 17:51:51 +00:00
Piotr Bogdan
2c60a41d0a gnumake3: remove 2018-11-15 17:41:25 +00:00
Piotr Bogdan
5d0eeeee38 coq2html: switch to default make 2018-11-15 17:41:25 +00:00
Alyssa Ross
b4bdaa0f18
bundler: 1.16.4 -> 1.17.1 2018-11-15 17:41:20 +00:00
Piotr Bogdan
20738d8b81 ngrep: switch to default make 2018-11-15 17:26:06 +00:00
Piotr Bogdan
0244d8b094 lensfun: switch to default make, move cmake to native build inputs 2018-11-15 17:26:06 +00:00
Johannes Frankenau
29a0a6c6a7 reaper: 5.94 -> 5.961 2018-11-15 18:16:45 +01:00
Johannes Frankenau
30f3d474d1 valentina: 0.6.0.0a -> 0.6.1 2018-11-15 18:12:55 +01:00
Will Dietz
943170898d unicode-paracode: use unicode 10 -> 11 data 2018-11-15 10:27:32 -06:00
Will Dietz
ebbad6c86d unicode-paracode: 2.5 -> 2.6
https://github.com/garabik/unicode/releases/tag/v2.6
2018-11-15 10:27:30 -06:00
Jörg Thalheim
c48411a404
Merge pull request #49836 from jbgi/fixes/help2man-postinstall
Fix help2man.postInstall syntax error under cygwin.
2018-11-15 16:24:21 +00:00
Jörg Thalheim
fb7abdaea1
rambox: 0.6.1 -> 0.6.2 2018-11-15 16:21:46 +00:00
Jörg Thalheim
8d275f6d17
Merge pull request #50314 from dywedir/wl-clipboard
wl-clipboard: init at 1.0.0
2018-11-15 15:59:15 +00:00
Jean-Baptiste Giraudeau
7fdb87a862
Fix help2man.postInstall syntax error under cygwin. 2018-11-15 16:56:01 +01:00
Jörg Thalheim
cb7fcd0a7c
Merge pull request #50202 from r-ryantm/auto-update/arangodb
arangodb: 3.3.16 -> 3.3.19
2018-11-15 15:51:24 +00:00
Jörg Thalheim
8859a297a4
Merge pull request #50336 from samueldr/refind/0.11.4
refind: 0.11.3 -> 0.11.4
2018-11-15 15:50:34 +00:00
Jörg Thalheim
5de4fe9e8a
Merge pull request #50385 from kalbasit/nixpkgs_tmux-darwin-sensible-reattach
tmuxPlugins.sensible: hardcode the path of reattach-to-user-namespace
2018-11-15 15:30:15 +00:00
Martin Lu
fb6f21a0f0 sops: 3.1.0 -> 3.2.0 2018-11-15 16:02:52 +01:00
Gabriel Ebner
b1c149d47a tptp: use urls instead of url
nix-prefetch-url breaks if the url argument to fetchurl is a list.
2018-11-15 15:56:18 +01:00
Gabriel Ebner
b3844d00f6 tptp: 7.1.0 -> 7.2.0 2018-11-15 15:50:48 +01:00
Brian Schroeder
2deaa540c2 nixnote2: fix window icon and themes
This installs `theme.ini` into `shared` as described at baumgarr/nixnote2#320.
2018-11-15 09:48:27 -05:00
Jörg Thalheim
16ba91891d
Merge pull request #50396 from taku0/flashplayer-31.0.0.148
flashplayer: 31.0.0.122 -> 31.0.0.148 [Important security fix]
2018-11-15 14:19:43 +00:00
Niklas Thörne
dd569dab09 bashdb: 4.4-0.94 -> 4.4-1.0.0 (#49754)
Added pygments dependency.
2018-11-15 14:15:35 +00:00
Oyren
04b234e995 write_stylus: fix loading libGL.so with libglvnd (#50395)
./Write: error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory
2018-11-15 13:55:05 +00:00
Orivej Desh
101133deae fasm: init at 1.73.04 (#50378) 2018-11-15 13:20:00 +00:00
Renaud
650036f022
Merge pull request #50359 from jfrankenau/gurobi-java
gurobi: install Java library files
2018-11-15 14:13:47 +01:00
Michael Weiss
a6167c3311 signal-desktop: 1.17.3 -> 1.18.0 2018-11-15 13:55:25 +01:00
Jörg Thalheim
695a157740
nix-review: 0.6.0 -> 0.6.1
- blacklist for tests.nixos-functions.nixos-test
- nix-review rev HEAD: will now work as expected
2018-11-15 12:47:23 +00:00
markuskowa
f482ff9deb
Merge pull request #50391 from geistesk/umlet-14-3
umlet: 14.2 -> 14.3
2018-11-15 13:34:59 +01:00
geistesk
dfa5820a7c umlet: 14.2 -> 14.3 2018-11-15 13:12:05 +01:00
Jörg Thalheim
e922a458ca
Merge pull request #50243 from tathougies/travis/hash-diff
perlPackages.HashDiff: init at 0.010
2018-11-15 11:30:13 +00:00
Renaud
45923f698d opengrok: 0.12.1.5 -> 1.0
Fix source tarball and version claim mismatch
2018-11-15 12:29:11 +01:00
Jörg Thalheim
9afa6f74e5
Merge pull request #50381 from kalbasit/nixpkgs_vim-go-use-go-motion
vimPlugins.vim-go: use the correct motion derivation for the dependency
2018-11-15 11:14:48 +00:00
Jörg Thalheim
1ed494367a
Merge pull request #49884 from kalbasit/nixpkgs_neovim-build-with-nodejs
neovim wrapper: build with nodejs support
2018-11-15 09:55:35 +00:00
Renaud
06061b7188
Merge pull request #50371 from markuskowa/licenses-28
Add licenses
2018-11-15 09:50:03 +01:00
Markus Kowalewski
142717e3ab
pgf: add license 2018-11-15 09:05:02 +01:00
Markus Kowalewski
d458a1869f
pgfplots: add meta data 2018-11-15 09:04:56 +01:00
Kier Davis
cb750a6a8a
freesweep: use fetchFromGitHub instead of fetchurl as per #32997 2018-11-15 06:48:39 +00:00
Travis Athougies
bdb03ef4e8 Add description and license to HashDiff 2018-11-14 21:59:44 -08:00
Will Dietz
b1e5910a7d elfinfo: init at 0.7.4 2018-11-14 23:33:10 -06:00
Ivan Jager
a995a81182 zfsUnstable: 0.8.0-rc1 -> 0.8.0-rc2 2018-11-14 22:09:55 -06:00
Wael M. Nasreddine
da4a004193
neovim wrapper: add withNodeJs to build wrapper with nodejs support 2018-11-14 19:54:47 -08:00
Wael M. Nasreddine
657e18e011
nodePackages.neovim: init at 4.2.1 2018-11-14 19:54:46 -08:00
Wael M. Nasreddine
8657ad712c
tmuxPlugins.sensible: hardcode the path of reattach-to-user-namespace 2018-11-14 19:39:04 -08:00
Wael M. Nasreddine
09cd6ff18b
vimPlugins.vim-go: use the correct motion derivation for the dependency 2018-11-14 18:33:38 -08:00
Wael M. Nasreddine
a9e2b3853f
go-motion: init unstable at 2018-04-09 2018-11-14 18:28:10 -08:00
taku0
1e8694d3d7 thunderbird: 60.3.0 -> 60.3.1 2018-11-15 09:13:14 +09:00
taku0
52fc63e37b thunderbird-bin: 60.3.0 -> 60.3.1 2018-11-15 09:12:46 +09:00
Markus Kowalewski
d190d8af0c
lkproof: add license 2018-11-15 00:13:53 +01:00
Markus Kowalewski
932861cacb
obexd: add licenese 2018-11-15 00:13:53 +01:00
Markus Kowalewski
89d0ad5c85
obex-data-server: add license 2018-11-15 00:13:52 +01:00
Markus Kowalewski
a6b854c9a2
dash: add licenses 2018-11-15 00:13:52 +01:00
Markus Kowalewski
d76c275605
pyIRCt,pyMAILt: add license 2018-11-15 00:13:52 +01:00
Markus Kowalewski
7d279b4780
virtuoso-opensource: add license 2018-11-15 00:13:52 +01:00
Markus Kowalewski
41c619a191
pgtap: add license 2018-11-15 00:13:52 +01:00
Markus Kowalewski
b9c5598b3c
mysql: add licenses 2018-11-15 00:13:46 +01:00
Piotr Bogdan
3e7b6b5bfa firefoxen: remove unused gstreamer dependencies
Firefox and, by extension, Tor browser don't support gstreamer any more, this
removes what are effectively unused dependencies.

https://bugzilla.mozilla.org/show_bug.cgi?id=1234092 "Remove gstreamer support"
2018-11-14 22:29:48 +00:00
Andreas Rammhold
34665b1589
Merge pull request #50349 from andir/rust-cbindgen
rust-cbindgen: 0.6.3 -> 0.6.7
2018-11-14 23:02:16 +01:00
Markus Kowalewski
b868f24475
samba3: add license 2018-11-14 22:58:39 +01:00
Vladyslav Mykhailichenko
bf9d378d07
tiled: 1.2.0 -> 1.2.1 2018-11-14 23:26:06 +02:00
Jörg Thalheim
0a8063442c
Merge pull request #50361 from Mic92/node-packages-springclean
nodePackages: springclean
2018-11-14 21:18:44 +00:00
Vladyslav M
d70cb8894a
Merge pull request #50358 from dtzWill/update/termite-14
termite: 13 -> 14
2018-11-14 22:59:48 +02:00
Silvan Mosberger
6e632406f5
Merge pull request #50365 from Infinisil/broken/xpra
xpra: Mark as broken
2018-11-14 21:45:40 +01:00
Silvan Mosberger
e1f0cd5b23
Merge pull request #49816 from dtzWill/update/plymouth-0.9.4
plymouth: 0.9.3 -> 0.9.4
2018-11-14 21:26:30 +01:00
Silvan Mosberger
86b12cb8ca
xpra: Mark as broken 2018-11-14 21:19:38 +01:00
Silvan Mosberger
688ed6b82d
Merge pull request #49947 from volth/patch-284
far2l: fix Darwin bug
2018-11-14 21:17:45 +01:00
Andreas Rammhold
66e16843b3
firefox: apply patch for newer rust-cbindgen
rust-cbindgen did apply some breaking changes which requires the added
patch in order to compile until a firefox version with the fix gets
released. Firefox 63.0.3 is supposed to carry the required patches. This
should only be required for a short term.
2018-11-14 20:51:19 +01:00
Vladimír Čunát
e229065842
Merge #50280: xorg: init xf86-video-vboxvideo ...
Based on reports X wouldn't start out of the box and seems OK now.
In case there are still some problems, we can improve later.
I checked that nixos.tests.virtualbox.* still succeed.
2018-11-14 20:34:48 +01:00
Jörg Thalheim
96a899a168
nodePackages: regenerate 2018-11-14 18:55:04 +00:00
Andreas Rammhold
f1ee26bc4b
rust-cbindgen: 0.6.3 -> 0.6.7 2018-11-14 19:53:30 +01:00
Johannes Frankenau
b4e13e6257 gurobi: install Java library files 2018-11-14 19:38:18 +01:00
Will Dietz
75f2b4692f termite: 13 -> 14
https://github.com/thestinger/termite/releases/tag/v14
2018-11-14 12:34:17 -06:00
Jörg Thalheim
552c223625
nodePackages.statsd: remove
The package/service is broken. Upstream is dead
2018-11-14 18:32:44 +00:00
Jörg Thalheim
e15babe35e
nodePackages.stylus: remove
Project has had no release in three, development seems stall: npmjs.com/package/stylus

cc @svanderburg
2018-11-14 18:32:43 +00:00
Jörg Thalheim
16a601b30f
nodePackages.typings: remove
This was deprecated by types, see npmjs.com/package/typings
cc @ therealpxc
2018-11-14 18:32:43 +00:00
Jörg Thalheim
54021f59b1
nodePackages.sinopia: remove
Project is unmaintained: rlidwka/sinopia#376
Could not find who added this.
2018-11-14 18:32:43 +00:00
Jörg Thalheim
386bcd4625
nodePackages.nsp: remove
The package was deprecated by upstream: npmjs.com/package/nsp
cc @peterromfeldhk
2018-11-14 18:32:42 +00:00
Jörg Thalheim
7e31a1d534
nodePackages.kibana-authentication-proxy:
This one did not receive an update in 5 years.
I could not find the guy adding this.
2018-11-14 18:32:42 +00:00
Jörg Thalheim
096639f403
nodePackages.jsontool: remove
This is actually now json which we also have: npmjs.com/package/jsontool
cc @rbvermaa
2018-11-14 18:32:42 +00:00
Jörg Thalheim
105484ed01
nodePackages.jayschema: remove
No longer maintained by upstream: npmjs.com/package/jayschema
Project page recommends alternative implementations.
cc @svanderburg
2018-11-14 18:32:42 +00:00
Jörg Thalheim
d5497d8979
nodePackages.istanbul: remove
This version was deprecated by upstream: https://github.com/gotwarlost/istanbul#readme

cc @svanderburg
2018-11-14 18:32:41 +00:00
Jörg Thalheim
bc0df45a14
nodePackages.hipache: remove
project was deprecated by upstream: https://github.com/hipache/hipache

cc @shlevy
2018-11-14 18:32:41 +00:00
Jörg Thalheim
62f4be2a89
nodePackages.fetch-bower: remove
This was replaced by bower2nix.

cc @shlevy
2018-11-14 18:32:41 +00:00
Jörg Thalheim
081f17f0d0
Merge pull request #50339 from peterhoeg/u/motion
motion: 4.1.1 -> 4.2
2018-11-14 17:53:50 +00:00
Jörg Thalheim
80389f0046
Merge pull request #49794 from avnik/fix/openarena
openarena: fix loading libGL.so with libglvnd
2018-11-14 17:49:55 +00:00
Matthew Bauer
0874ee8f05
Merge pull request #47684 from roberth/nixpkgs-nixosTest
Add pkgs.nixosTest
2018-11-14 11:20:46 -06:00
goibhniu
ad18c540ff
Merge pull request #47596 from cillianderoiste/tbs-fix
TBS: fix modules
2018-11-14 18:17:01 +01:00
Jörg Thalheim
987bd62232
Merge pull request #50232 from wucke13/master
qgroundcontrol: fixes #49870
2018-11-14 17:10:05 +00:00
Jörg Thalheim
4c3e9a7d06
Merge pull request #50354 from pbogdan/miro-remove
miro: remove
2018-11-14 17:09:10 +00:00
Piotr Bogdan
b8d0810e98 miro: remove 2018-11-14 15:59:18 +00:00
Renaud
7ca9d67948
Merge pull request #50102 from r-ryantm/auto-update/gp2c
gp2c: 0.0.11 -> 0.0.11pl1
2018-11-14 16:07:49 +01:00
Timo Kaufmann
e3592a0abe
Merge pull request #50350 from kwohlfahrt/houdini
houdini: 16.5.439 -> 17.0.352
2018-11-14 15:42:43 +01:00
Kai Wohlfahrt
5732500bd2 houdini: 16.5.634 -> 17.0.352 2018-11-14 14:27:30 +00:00
Renaud
f0f0ec0734
Merge pull request #50104 from r-ryantm/auto-update/hiawatha
hiawatha: 10.8.1 -> 10.8.3
2018-11-14 15:15:09 +01:00
Linus Heckemann
3ef226158e
Merge pull request #49762 from symphorien/fccache
nixos/fontconfig/make-fonts-cache: don't fail to clean the cache
2018-11-14 13:54:01 +01:00