Commit Graph

83577 Commits

Author SHA1 Message Date
Tim Steinbach
d3b8a77834
linux: 4.4.32 -> 4.4.33 2016-11-19 08:56:31 -05:00
Tim Steinbach
250224bf01
linux: 4.8.8 -> 4.8.9 2016-11-19 08:55:57 -05:00
Tim Steinbach
f13fa8a337
franz: Allow to run with grsecurity kernel 2016-11-19 08:39:13 -05:00
Joachim Fasting
f32a8eb6cc
xidel: refactor & fix eval
- Fix eval by removing reference to non-existent stdenv.glibc
- Simplify patchelf calls
- Set meta.platforms = linux
2016-11-19 14:29:22 +01:00
Profpatsch
786c13c884 Merge pull request #20534 from Profpatsch/ghcjs-sort-configuration
Ghcjs sort configuration
2016-11-19 14:28:43 +01:00
Graham Christensen
df21b76a21 Merge pull request #20541 from taku0/thunderbird-bin-45.5.0
thunderbird-bin: 45.4.0 -> 45.5.0
2016-11-19 07:09:11 -05:00
Pascal Wittmann
4cdfa0b96a
axel: 2.7 -> 2.11 2016-11-19 10:51:56 +01:00
Vladimír Čunát
b69f568f4c
Merge branch 'staging'
Hydra rebuild looks fine; only a few Darwin jobs is queued:
http://hydra.nixos.org/eval/1304891?compare=1304807
2016-11-19 04:35:51 +01:00
Graham Christensen
775a729da7 Merge pull request #20497 from grahamc/monit
monit: 5.19.0 -> 5.20.0 for CVE-2016-7067
2016-11-18 21:19:44 -05:00
Joachim F
7ce938e1d6 Merge pull request #20525 from markus1189/scalafmt-0410
scalafmt: 0.4.2 -> 0.4.10
2016-11-19 03:05:22 +01:00
Joachim F
50f90d4ea8 Merge pull request #20465 from periklis/topic_jsduck
jsduck: init version
2016-11-19 03:04:49 +01:00
Joachim F
35c6c439a2 Merge pull request #20414 from nico202/w_scan
w_scan: init at 20161022
2016-11-19 03:03:55 +01:00
Joachim F
3dd936aa56 Merge pull request #20537 from romildo/upd.uncrustify
uncrustify: 0.63 -> 0.64
2016-11-19 03:03:29 +01:00
Shea Levy
6f1d4149d5 ios-cross: Fix for simulator 2016-11-18 18:14:20 -05:00
Lancelot SIX
98092df841 gnupg21: 2.1.15 -> 2.1.16 2016-11-19 00:11:44 +01:00
romildo
cc9466a627 uncrustify: 0.63 -> 0.64 2016-11-18 20:45:35 -02:00
sternenseemann
15004268d7 ocaml-notty: init at 0.1.1 2016-11-18 22:52:16 +01:00
Mateusz Kowalczyk
21a1611269 Merge pull request #20523 from romildo/upd.nitrogen
nitrogen: 1.5.2 -> 1.6.0
2016-11-18 21:38:47 +00:00
Aristid Breitkreuz
3ebefe8178 kbfs: 2016-08-02 -> 2016-11-18 2016-11-18 22:35:58 +01:00
Arseniy Seroka
57260d4c79 Merge pull request #20483 from steveeJ/vim-plugins-deoplete-go
vim-plugins/deoplete-go: init at 2016-11-12
2016-11-18 23:35:21 +04:00
taku0
2540608f43 thunderbird-bin: 45.4.0 -> 45.5.0 2016-11-19 03:12:09 +09:00
Frederik Rietdijk
58f0dcfeb1 Merge pull request #20365 from hakuch/fix_opam
clingo, gringo: Revert opam solver dependency changes
2016-11-18 18:49:07 +01:00
Thomas Tuegel
6cd867dd4c Merge pull request #20433 from ttuegel/install-cd-kde-5
Use KDE 5 for the graphical installation DVD
2016-11-18 11:29:47 -06:00
Daniel Peebles
e8bb0a5ef7 Merge pull request #20518 from rasendubi/fetchFromGitHub
fetchFromGitHub: add fetchSubmodules option
2016-11-18 12:29:22 -05:00
Frederik Rietdijk
e985c5ac23 Merge pull request #20532 from gnidorah/master2
rambox: 0.4.4 -> 0.4.5
2016-11-18 18:03:54 +01:00
Pascal Wittmann
9a6c17d92b Merge pull request #20520 from spacekitteh/patch-15
bro: 2.4.1 -> 2.5
2016-11-18 17:33:31 +01:00
Shea Levy
64ec4dd87b Add haskell packages set for cross ghc 2016-11-18 10:44:53 -05:00
Profpatsch
06e0bac814 haskell/ghcjs: sort ghcjs packages alphabetically 2016-11-18 16:38:04 +01:00
Profpatsch
a7043808dd haskell/ghcjs: patch Safe out of fast-logger 2016-11-18 16:24:37 +01:00
Profpatsch
247d7c88d2 haskell.packages.ghcjs: fix entropy (#20446) 2016-11-18 16:17:14 +01:00
Thomas Tuegel
b32a1c7244 Merge pull request #20428 from ttuegel/multiple-outputs-gtk
Use multiple outputs for gtkmm and friends
2016-11-18 09:16:34 -06:00
Joachim Fasting
e38b74ba89
grsecurity: work around for #20490
In `scripts/Makefile.modinst`, the code that generates the list of
modules to install passes file names via the command line.  When
installing a grsecurity kernel, this list appears to exceed the
shell's argument list limit, as in

    make[2]: execvp: /nix/store/[...]-bash-4.3-p46/bin/bash: Argument list too long

The build does not fail, however, but the list of modules to be installed ends
up being empty.  Thus, the resulting kernel package output contains no modules,
rendering it useless.

We work around this by patching the makefile to use `find -exec` to
process files.  Why this would occur for grsecurity and not other
kernels is unknown, most likely there's something *else* that is
actually causing this behaviour, so this is a temporary fix until that
cause is found.

Fixes https://github.com/NixOS/nixpkgs/issues/20490
2016-11-18 16:14:26 +01:00
Profpatsch
b399de2970 ghcjsHEAD: don’t just copy & replace, reuse same code (#20493)
* ghcjsHEAD: don’t just copy & replace, reuse same code

The HEAD file was just copied over and a few hashes replaced.
Most of these hashes were already function arguments anyway, so no reason to not
abstract over that.

* ghcjs/base: factor out stage1Packages & regenerate for HEAD

The stage1Packages have changed on ghcjs head, this adds the new list.
2016-11-18 16:13:56 +01:00
Alex Ivanov
4feaf8c4ac rambox: 0.4.4 -> 0.4.5 2016-11-18 17:21:15 +03:00
sternenseemann
ae13a18c6a ocaml-erm_xmpp_0_3: init at 0.3 2016-11-18 14:42:12 +01:00
sternenseemann
c7dc06655a ocaml-otr: init at 0.3.3 2016-11-18 14:39:58 +01:00
sternenseemann
d98a770ec4 ocaml-tls: init at 0.7.1 2016-11-18 14:23:49 +01:00
Sophie Taylor
ffa225336c bro: 2.4.1 -> 2.5 2016-11-18 23:20:58 +10:00
sternenseemann
5cc3f16f39 ocaml-x509: set mininimum supported ocaml version 2016-11-18 14:14:15 +01:00
Markus Hauck
20b136f7d3 scalafmt: 0.4.2 -> 0.4.10 2016-11-18 13:41:59 +01:00
romildo
1a486c47af nitrogen: 1.5.2 -> 1.6.0 2016-11-18 09:49:27 -02:00
Falco Peijnenburg
5f5f0614b0 Support for ARM in openblas
Attempting to build openblas on ARM resulted in the error "unsopported system: armv7l_linux". This PR resolves that issue and some other issues that pop up when trying to build openblas for ARM.
2016-11-18 12:44:49 +01:00
Michael Raskin
fd0d7229ff Merge pull request #20519 from avnik/wine-update
wine-unstable: 1.9.22 -> 1.9.23
2016-11-18 11:22:19 +00:00
Alexander V. Nikolaev
edcfa0f3fa wine-unstable: 1.9.22 -> 1.9.23 2016-11-18 13:16:02 +02:00
Periklis Tsirakidis
82aa52f01d jsduck: init version 2016-11-18 12:14:03 +01:00
Alexey Shmalko
a80cacd3ec
fetchFromGitHub: add fetchSubmodules option
This commit extends fetchFromGitHub with ability to fetch GitHub
repositories with submodules, so we can use the function consistently
with all GitHub repositories.

Note it doesn't change the previous behavior.
2016-11-18 13:04:26 +02:00
Alexey Shmalko
77847756f3 Merge pull request #20263 from dtzWill/feature/bloaty
bloaty: init at 2016.11.16
2016-11-18 12:39:38 +02:00
Peter Simons
80daa953c4 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.0.3-3-g5c816fd from Hackage revision
75f785093e.
2016-11-18 09:51:24 +01:00
Peter Simons
4306a53756 Declare "ghcjs-base" as a compiler-provided core package.
This change fixes several GHCJS-related packages in our Hackage database.

Cc: @Profpatsch
2016-11-18 09:51:14 +01:00
Peter Simons
29662304df configuration-hackage2nix.yaml: disable broken builds
Ping @abbradar because of broken lambdabot.
2016-11-18 09:51:06 +01:00
Domen Kožar
065fa2fe66 Merge pull request #20509 from garbas/elm-0.18
elm: 0.17.1 -> 0.18
2016-11-18 09:31:17 +01:00
Tim Steinbach
5080d17984 Merge pull request #20171 from sternenseemann/x509
ocaml-x509: 0.5.0 -> 0.5.3
2016-11-17 22:24:13 -05:00
Tim Steinbach
7e96221c89 Merge pull request #20280 from vandenoever/libreoffice
libreoffice-fresh: 5.2.2.2 -> 5.2.3.3
2016-11-17 22:22:30 -05:00
Tim Steinbach
cca6382f33 Merge pull request #20342 from avnik/update/gimplensfun
gimp-lensfun: 0.1.1 -> 0.2.4
2016-11-17 22:22:15 -05:00
Tim Steinbach
74dee9fc39 Merge pull request #20358 from f--t/fix/powerline-update-2.4
powerline: 2.1.4 -> 2.4
2016-11-17 22:21:57 -05:00
Tim Steinbach
d0695c7877 Merge pull request #20378 from sternenseemann/asn1
ocaml-asn1-combinators: 0.1.2 -> 0.1.3
2016-11-17 22:21:44 -05:00
Tim Steinbach
80ec5b3f58 Merge pull request #20416 from cko/nodejs7_update
nodejs-7_x: 7.0.0 -> 7.1.0
2016-11-17 22:21:13 -05:00
Tim Steinbach
3b2b5b97fb Merge pull request #20479 from goetzst/webstorm
webstorm: 2016.2.4 -> 2016.3
2016-11-17 22:21:00 -05:00
Tim Steinbach
4d7ed37362 Merge pull request #20505 from sternenseemann/nocrypto
nocrypto: 0.5.1 -> 0.5.3
2016-11-17 22:20:46 -05:00
Tim Steinbach
ab9015935e Merge pull request #20508 from NeQuissimus/atom_1_12_4
atom: 1.12.2 -> 1.12.4
2016-11-17 22:19:33 -05:00
Tim Steinbach
29356a3ac1 Merge pull request #20457 from DerTim1/erlang
erlang: 18.3.4 -> 18.3.4.4, erlang: 19.1 -> 19.1.6
2016-11-17 22:18:30 -05:00
Rok Garbas
84280ff96d
elm: 0.17.1 -> 0.18 2016-11-18 02:55:42 +01:00
Tim Steinbach
fe0d46d05b
atom: 1.12.2 -> 1.12.4 2016-11-17 19:43:52 -05:00
Austin Seipp
8458d6b720 plex: 1.0.0 -> 1.2.7; fix some more binaries (#20137)
This bumps the version of Plex to the new 1.2.x branch, available to the
public. During the 1.1.x branch, there were several more critical
binaries that were added to the distribution; we also have to patch
these new executables as well with the version bump, to ensure things
keep working.

Part of this patch was authored by Michael Francis - I simply bumped the
version.

Closes #20137.

Authored-by: Austin Seipp <aseipp@pobox.com>
Authored-by: Michael Francis <edude03@gmail.com>
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2016-11-17 18:16:20 -06:00
Will Dietz
a0b7ce3ac6 bloaty: init at 2016.11.07 2016-11-17 17:39:53 -06:00
Ricardo M. Correia
6dfd4f5b08 pepperflash: 23.0.0.205 -> 23.0.0.207 2016-11-18 00:33:11 +01:00
Robert Helgesson
4142e756ca
svtplay-dl: 1.7 -> 1.8 2016-11-18 00:12:00 +01:00
Robert Helgesson
1d5c193ba3
perl-Log-Log4perl: 1.47 -> 1.48 2016-11-18 00:12:00 +01:00
Robert Helgesson
00e6b9033a
perl-Log-Any: 1.042 -> 1.045 2016-11-18 00:12:00 +01:00
Robert Helgesson
e9fa10d609
perl-Math-BigInt: 1.999727 -> 1.999800 2016-11-18 00:11:59 +01:00
Robert Helgesson
1cddab9447
perl-Math-BigRat: 0.260804 -> 0.260805 2016-11-18 00:11:59 +01:00
Robert Helgesson
c92aa1ba6d
eclipse-plugin-checkstyle: 6.19.1 -> 7.2.0 2016-11-18 00:11:46 +01:00
Ricardo M. Correia
58a18d1676 Merge pull request #20501 from vbgl/menhir-20161115
ocamlPackages.menhir: 20160526 -> 20161115
2016-11-17 23:42:21 +01:00
Vincent Demeester
561518e9ff
doctl: 1.3.1 -> 1.5.0
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-11-17 23:32:21 +01:00
Aristid Breitkreuz
711a42e03a keybase: update 1.0.17 -> 1.0.18 2016-11-17 22:55:15 +01:00
Pascal Wittmann
7516b7ca31
pdfpc: 4.0.2 -> 4.0.3 2016-11-17 22:51:33 +01:00
Pascal Wittmann
ec6e4689ea xlockmore: 5.47 -> 5.49 2016-11-17 22:34:03 +01:00
Pascal Wittmann
564f9dc55d ragel: 7.0.0.6 -> 7.0.0.9 2016-11-17 22:34:03 +01:00
Pascal Wittmann
5ed5b2278b colm: 0.13.0.3 -> 0.13.0.4 2016-11-17 22:34:03 +01:00
Pascal Wittmann
69d3536852 ncdu: 1.11 -> 1.12 2016-11-17 22:34:03 +01:00
Matthew Bauer
fe91dd36d0
wireshark: add darwin support 2016-11-17 15:10:22 -06:00
Franz Pletz
f4a318b528
qemu: add patches for CVE-2016-7994 & CVE-2016-8668 2016-11-17 22:00:44 +01:00
Vladimír Čunát
e68d8e05aa Revert "lz4: 131 -> 1.7.3"
This reverts commit 1f0a12ee8d.
Systemd build was broken and such change should probably go through
staging anyway.
2016-11-17 21:51:34 +01:00
sternenseemann
86c45fc2d3 ocaml-nocrypto: 0.5.1 -> 0.5.3 2016-11-17 21:40:46 +01:00
sternenseemann
cbfc766ad4 ocaml-cstruct: remove camlp4 support
This change solves dependency issues related to camlp4, async_p4 and sexplib_p4
2016-11-17 21:38:09 +01:00
Pascal Wittmann
cdd8454510 moc: 2.5.0 -> 2.5.1 2016-11-17 21:36:26 +01:00
Franz Pletz
7c65e225dd
php70: 7.0.12 -> 7.0.13 2016-11-17 21:17:56 +01:00
Franz Pletz
e53b902559
php56: 5.6.27 -> 5.6.28 2016-11-17 21:17:56 +01:00
Pascal Wittmann
ba8a257aa3 Merge pull request #20503 from romildo/upd.supertux
supertux: 0.5.0 -> 0.5.1
2016-11-17 21:12:30 +01:00
Thomas Tuegel
1bdcd8ac25 Merge pull request #20504 from romildo/upd.menu-cache
menu-cache: 1.0.1 -> 1.0.2
2016-11-17 13:49:29 -06:00
romildo
f4fd8ace13 menu-cache: 1.0.1 -> 1.0.2 2016-11-17 17:05:47 -02:00
romildo
5e95e8e281 supertux: 0.5.0 -> 0.5.1 2016-11-17 16:52:33 -02:00
Franz Pletz
6a5ae21c47 Merge pull request #20421 from mayflower/refactor/clamav-service
clamav service: refactor
2016-11-17 19:37:53 +01:00
Stefan Junker
da23970660 vim-plugins/deoplete-go: init at 2016-11-12 2016-11-17 18:23:33 +01:00
Vincent Laporte
5b59e91f73 ocamlPackages.menhir: 20160526 -> 20161115 2016-11-17 18:07:37 +01:00
Franz Pletz
6f1308ba95
Revert "btrfs-progs: 4.8.2 -> 4.8.3"
This reverts commit e82c325bff.

This package update breaks the `update-grub.pl` script:

    updating GRUB 2 menu...
    Btrfs did not return a path for the subvolume at /
    error: unable to activate new configuration

This backwards-incompatible change is the culprit:

    $ /nix/store/np25r3yzv2r41ji7v73j110inpj8lhn2-btrfs-progs-4.8.2/bin/btrfs subvol show /
    / is toplevel subvolume

vs.

    $ /nix/store/h53vs13nqvjwahpl26a4s7ygqk9xw1mw-btrfs-progs-4.8.3/bin/btrfs subvol show /
    /
    	Name: 			<FS_TREE>
    	UUID: 			-
    	Parent UUID: 		-
    	Received UUID: 		-
    	Creation time: 		-
    	Subvolume ID: 		5
    	Generation: 		6004631
    	Gen at creation: 	0
    	Parent ID: 		0
    	Top level ID: 		0
    	Flags: 			-
    	Snapshot(s):
2016-11-17 17:47:18 +01:00
Peter Simons
0816860785 Merge pull request #20463 from Profpatsch/with-packages-drv-naming
ghc.withPackages: amend the derviation name
2016-11-17 17:09:28 +01:00
goibhniu
ad481e67d0 Merge pull request #20495 from nico202/faust2ladspa
faust2ladspa: init (at 2.0.a51 like other faust2... plugins)
2016-11-17 17:07:51 +01:00
Profpatsch
499e4e6393 ghc.withPackages: amend the derviation name
Provide a clear difference between the compiler itself and link farms containing
additional packages.
2016-11-17 16:48:53 +01:00
Tobias Geerinckx-Rice
1f0a12ee8d
lz4: 131 -> 1.7.3
‘make install’ now supports FreeBSD out of the box (untested).
2016-11-17 16:27:31 +01:00
Gabriel Ebner
d26ca0c6cf tokei: 3.0.0 -> 4.0.0 2016-11-17 09:26:00 -05:00
Domen Kožar
2326c8de4d cloud-utils: 0.27 -> 0.29
We keep the existing hacks for growpart to work
inside the initrd

Fixes #15736 #17015
2016-11-17 15:15:42 +01:00
Graham Christensen
1376aeba42
monit: 5.19.0 -> 5.20.0 for CVE-2016-7067 2016-11-17 08:45:56 -05:00
Nicolò Balzarotti
106349a02f faust2ladspa: init (at 2.0.a51 like other faust2... plugins) 2016-11-17 13:59:02 +01:00
Thomas Tuegel
3d5a033c96 Merge pull request #20427 from ttuegel/multiple-outputs-networkmanager
networkmanager: multiple outputs
2016-11-17 06:34:58 -06:00
Thomas Tuegel
be491881f3 Merge pull request #20464 from ttuegel/kde-env-no-link
kdeWrapper: reduce closure size
2016-11-17 06:32:19 -06:00
Shea Levy
3995655d2c Revert "Merge pull request #17145 from kalhauge/haskell_darwin_dyld"
This fix doesn't actually fix the cabal bug (see #16357), but it does
cause other bugs (see #20476)

Fixes #20476

This reverts commit b89fa5fd5c, reversing
changes made to e4b146b041.
2016-11-17 07:25:42 -05:00
Jaka Hudoklin
f4780da125 vimPlugins/vim-jsdoc: init at 0kr4p01p 2016-11-17 13:07:38 +01:00
Matthew Daiter
8f765490e4 erlang_basho: Init at R16B03
erlang_basho_R16B03: added package file

erlang_basho_R16B03: added to top-level/all-packages.nix file

erlang_basho_R16B03_odbc: added to top-level/all-packages.nix file

erlang_basho_R16B03: Added the Carbon and Cocoa fields

erlang_basho_R16B03: Removed faulty maintainer

erlang_basho_R16B03: Added license as APL20

erlang_basho_R16B03: Made long and short description more informative

erlang_basho: added myself as a maintainer

erlang_basho: made configureFlags into an array

erlang_basho: added gcc as a dependency

erlang_basho: added escript replacement

erlang_basho: removed debugging cat statement

erlang_basho: changed subsitituteInPlace command to sed command

erlang_basho: added package

erlang_basho: Init at <R16B03
2016-11-17 12:25:04 +01:00
Vladimír Čunát
380bb207b6
libpng: 1.6.23 -> 1.6.26 2016-11-17 11:58:27 +01:00
Vladimír Čunát
94396a579e
libinput: maintenance 1.5.0 -> 1.5.1 2016-11-17 11:34:10 +01:00
Vladimír Čunát
8b565d6478
Merge #20081: update alsa lib, plugins and utils 2016-11-17 11:26:00 +01:00
Vladimír Čunát
ea292da4c2
libdrm: 2.4.71 -> 2.4.73
Also:
- remove udev remains except explanation;
- remove maintainers.urkud, as he's been inactive for years.
2016-11-17 11:23:36 +01:00
Vladimír Čunát
5af7b82336
Merge branch 'master' into staging
To incorporate some larger security rebuilds (jasper).
2016-11-17 11:14:05 +01:00
Franz Pletz
ba73dbbda6
batman-adv: 2016.3 -> 2016.4 2016-11-17 08:14:18 +01:00
Shea Levy
da547f7961 ghcHEAD: Add back response files patch 2016-11-17 01:05:21 -05:00
Graham Christensen
d0d3330866
shutter: add patch for CVE-2015-0854 with remote code 2016-11-16 22:06:06 -05:00
Graham Christensen
7ed55dc9e4
xinetd: patch for CVE-2013-4342 2016-11-16 22:06:06 -05:00
Graham Christensen
1eb545df05
jasper: 1.900.21 -> 1.900.28 2016-11-16 22:06:02 -05:00
Tim Steinbach
f590c6e464 Merge pull request #20475 from NeQuissimus/mariadb_10.1.19
mariadb: 10.1.18 -> 10.1.19
2016-11-16 20:24:19 -05:00
Tim Steinbach
f0e2c5d96d Merge pull request #20477 from NeQuissimus/opera_41
opera: 40.0.2308.90 -> 41.0.2353.56
2016-11-16 20:16:13 -05:00
Tim Steinbach
2bc7366667 Merge pull request #20480 from NeQuissimus/libgit2_0_24_3
libgit2: 0.24.2 -> 0.24.3
2016-11-16 20:15:26 -05:00
Thomas Tuegel
5da372c36e
remove kdeEnv 2016-11-16 17:07:13 -06:00
Thomas Tuegel
58811df272
kdeWrapper: reduce closure size 2016-11-16 17:07:13 -06:00
Robert Helgesson
add010f694
eclipse-plugin-testng: 6.9.12 -> 6.9.13 2016-11-17 00:06:41 +01:00
Robert Helgesson
4b6770d0c0
pythonPackages.PyICU: 1.9.3 -> 1.9.5 2016-11-17 00:06:41 +01:00
Robert Helgesson
38de6ed18e
gmic: 1.7.7 -> 1.7.8 2016-11-17 00:06:41 +01:00
Robert Helgesson
b25f9ff20e
mimeo: 2016.2 -> 2016.11 2016-11-17 00:06:41 +01:00
Robert Helgesson
72d410fc74
pecita: 5.3 -> 5.4 2016-11-17 00:06:41 +01:00
Frederik Rietdijk
9524aedfc8 Merge pull request #20472 from Mic92/qrcode
pythonPackages.qrcode: fix dependencies and tests
2016-11-16 21:59:41 +01:00
Eelco Dolstra
f66271238e libdevil: Use multiple outputs 2016-11-16 20:56:35 +01:00
Eelco Dolstra
f3dbb0892c freeglut: Use multiple outputs 2016-11-16 20:51:12 +01:00
Frederik Rietdijk
16e511fe2d pythonPackages.traitlets: fix tests 2016-11-16 19:32:20 +01:00
Tobias Geerinckx-Rice
d3e54d71c1
debian_devscripts: 2.16.6 -> 2.16.8 2016-11-16 19:14:30 +01:00
Tim Steinbach
6f2b2daccf
libgit2: 0.24.2 -> 0.24.3 2016-11-16 12:52:07 -05:00
Tim Steinbach
589ceb0386 Merge pull request #20453 from NeQuissimus/liquibase_3_5_3
liquibase: 3.4.2 -> 3.5.3
2016-11-16 12:51:45 -05:00
Tim Steinbach
59adba43ca Merge pull request #20451 from NeQuissimus/git_2_10_2
git: 2.10.1 -> 2.10.2
2016-11-16 12:51:33 -05:00
Tim Steinbach
0c9f88ea3c Merge pull request #20447 from NeQuissimus/gradle_3_2
gradle: 3.1 -> 3.2
2016-11-16 12:51:14 -05:00
Stefan Götz
58d580764e webstorm: 2016.2.4 -> 2016.3 2016-11-16 18:48:10 +01:00
Tim Steinbach
9c3eae488e
opera: 40.0.2308.90 -> 41.0.2353.56 2016-11-16 12:14:27 -05:00
Daniel Peebles
f6a7296499 Merge pull request #16540 from matthewbauer/xcbuild
xcbuild: add wrapper
2016-11-16 12:11:15 -05:00
Tim Steinbach
0736bd2c53
mariadb: 10.1.18 -> 10.1.19 2016-11-16 12:04:41 -05:00
John Wiegley
c4d2d56f22
emacs: Missed a pluralization... 2016-11-16 08:54:30 -08:00
John Wiegley
0bf515c973
emacs: Depend on libselinux only for Linux 2016-11-16 08:53:45 -08:00
Rushmore Mushambi
244c18c70d Merge pull request #20460 from retrry/master
Rust updates
2016-11-16 18:30:01 +02:00
Jörg Thalheim
3378638e4b Merge pull request #20468 from lsix/update_poezio_1_10
poezio: 0.9 -> 0.10
2016-11-16 17:21:43 +01:00
Jörg Thalheim
2b31fecfd8
pythonPackages.qrcode: fix dependencies
this also fix tests for python3
2016-11-16 17:11:26 +01:00
Jörg Thalheim
ac8b3165b6
pythonPackages.pymaging_png: init at 2016-11-16 2016-11-16 17:11:17 +01:00
Jörg Thalheim
3d2e46e7ad
pythonPackages.pymaging: init at 2016-11-16 2016-11-16 17:10:07 +01:00
zimbatm
a60a584cb6 terraform: 0.7.10 -> 0.7.11 2016-11-16 15:52:25 +00:00
Jörg Thalheim
178bd65e0f Merge pull request #20470 from Mic92/qrcode
pythonPackages.qrcode: 5.1 -> 5.3
2016-11-16 16:34:15 +01:00
Jörg Thalheim
e237791fd4
pythonPackages.qrcode: 5.1 -> 5.3
works with python3 now
2016-11-16 16:32:36 +01:00
Frederik Rietdijk
efaf3358db pythonPackages.traitlets: 4.2.2 -> 4.3.1 2016-11-16 16:16:54 +01:00
Frederik Rietdijk
2a3d552c55 pythonPackages.ipykernel: 4.5.0 -> 4.5.1 2016-11-16 16:16:54 +01:00
Domen Kožar
45f579b9e7 allowUnfree: mention the solution that works for nix-shell as well 2016-11-16 15:14:19 +01:00
Lancelot SIX
f7558d07df
poezio: 0.9 -> 0.10 2016-11-16 15:01:43 +01:00
Lancelot SIX
a45315500e
pythonPackages.slixmpp: 1.1 -> 1.2.1 2016-11-16 15:01:30 +01:00
Thomas Tuegel
ecbb4db055 Merge pull request #20430 from ttuegel/multiple-outputs-ldns
ldns: multiple outputs
2016-11-16 07:29:11 -06:00
Thomas Tuegel
137075ea3a Merge pull request #20432 from ttuegel/kde-applications-16.08.3
kde5.applications: 16.08.2 -> 16.08.3
2016-11-16 07:27:48 -06:00
Frederik Rietdijk
77cdbb9e3a pythonPackages.cryptography: 1.5.1 -> 1.5.3 2016-11-16 14:19:54 +01:00
Domen Kožar
d35c15217c Merge pull request #20443 from NeQuissimus/kotlin_1_0_5_2
kotlin: 1.0.5 -> 1.0.5-2
2016-11-16 14:14:19 +01:00
Tobias Geerinckx-Rice
e3a7fc3905
eid-mw: 4.1.18 -> 4.1.19 2016-11-16 13:32:25 +01:00
Tobias Geerinckx-Rice
2034ffdc07
dpkg: 1.18.14 -> 1.18.15 2016-11-16 13:20:32 +01:00
Tadas Barzdzius
87e07a3098 tokei: mark as broken 2016-11-16 13:27:24 +02:00
Tadas Barzdzius
e2eec8f436 exa: mark as broken 2016-11-16 13:27:12 +02:00
Tadas Barzdzius
535f26a9e9 rustfmt: 0.6.0 -> 0.6.2 2016-11-16 13:26:59 +02:00
Tadas Barzdzius
24065c91c0 rustRegistry: 2016-10-29 -> 2016-11-15 2016-11-16 13:26:36 +02:00
Tadas Barzdzius
0f51eb58ee rustc, cargo: 1.12.1 -> 1.13.0, 0.13.0 -> 0.14.0 2016-11-16 13:25:19 +02:00
Peter Simons
fcb6a18f37 haskell-http-api-data: fix reference in configuration-common.nix 2016-11-16 11:16:10 +01:00
Peter Simons
1e43c159e2 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.0.3-3-g5c816fd from Hackage revision
4196e3bc37.
2016-11-16 11:16:02 +01:00
Peter Simons
734bd22f1b LTS Haskell 7.9 2016-11-16 11:15:13 +01:00
Frederik Rietdijk
fb62bc90a1 pythonPackages.numexpr: 2.5.2 -> 2.6.1 2016-11-16 10:48:28 +01:00
Tim Digel
2bcaa93aa7 erlang: 19.1 -> 19.1.6 2016-11-16 09:25:04 +01:00
Matthew Bauer
fc1f6f55ea
xcbuild: Get rid of developer.nix, move to wrapper
also:

- add custom outputs "specs" for xcbuild
- get rid of unneeded tools
- update xcbuild
- add more comments
- fixup xcbuild derivations

Affected xcbuild derivations include:

- adv_cmds
- network_cmds
- basic_cmds
2016-11-15 19:13:23 -06:00
Matthew Bauer
4685bd7853
xcbuild: update meta and comments 2016-11-15 19:13:22 -06:00
Matthew Bauer
437bdc5e4b
xcbuild: fix toolchain on Linux 2016-11-15 19:13:22 -06:00
Matthew Bauer
0b6bfa49d5
xcbuild: Move extra specs to platform 2016-11-15 19:13:05 -06:00
Matthew Bauer
25485ece2a
xcbuild: add name to platform.nix 2016-11-15 18:58:13 -06:00
Matthew Bauer
9f46587841
network_cmds: init at 481.20.1
Fixes #16764
2016-11-15 18:58:13 -06:00
Matthew Bauer
3b17d9e35e
developer_cmds: init at 62 2016-11-15 18:58:13 -06:00
Matthew Bauer
823772b056
Librpcsvc: init at 26 2016-11-15 18:58:12 -06:00
Matthew Bauer
4a01a37051
basic_cmds: init at 55 2016-11-15 18:58:12 -06:00
Matthew Bauer
ec409c8e96
contacts: use xcbuild instead of xcodebuild 2016-11-15 18:58:11 -06:00
Matthew Bauer
a35b330f30
adv_cmds: move from all-packages
Use the old way with pkgs/os-specific/darwin/apple-source-releases/defuault.nix.
2016-11-15 18:58:11 -06:00
Matthew Bauer
1ee8685ee7
adv_cmds: add custom install phase 2016-11-15 18:58:10 -06:00
Matthew Bauer
78c3acc2ee
xcbuild: Add install phase
This phase is disabled for now but we can use it later.
2016-11-15 18:58:10 -06:00
Matthew Bauer
f1897116d0
xcbuild: temporarily fix cflags/ldflags
This gets everything to build.

adv_cmds: remove NIX_LDFLAGS

- unneeded
2016-11-15 18:58:09 -06:00
Matthew Bauer
6c1858a93d
adv_cmds: Disable pkill.
pkill isn't building because of some missing headers:

- xpc/xpc.h
- os/base_private.h
- _simple.h

They are all available somewhere but not set up correctly in the Darwin
stdenv.

TODO: add pkill back in!
2016-11-15 18:58:09 -06:00
Matthew Bauer
ebf963ac6c
xcbuild: Update toolchain
- Rework spec files.
- Add more tool specs.
- Add ctags.
2016-11-15 18:58:09 -06:00
Matthew Bauer
44ad052c43
xcbuild: Make "xcbuild.raw" for original unwrapped 2016-11-15 18:58:08 -06:00
Matthew Bauer
8e301fab50
adv_cmds: add xcode derivation 2016-11-15 18:58:08 -06:00
Matthew Bauer
de87138b9a
xcbuild: add wrapper
Also updates xcbuild version.

This changes the raw string expressions into nix expressions that are
then converted into json by builtins.toJSON. Then, converted to Plist
XML by Apple's plutil. Sadly, xcbuild does not support using raw JSON
but Apple's plutil does so we just convert the file from JSON to XML
using Apple's plutil. The result is not ideal but it looks like all OS X
systems have working plutil's.

- set mac version to 10.10
- add setup hook.
2016-11-15 18:57:20 -06:00
Shea Levy
d9e63424b7 ghc-HEAD: Run boot after patches.
This allows for patches affecting configure.ac to take effect
2016-11-15 19:44:21 -05:00
Tim Steinbach
4f820d44d0 Merge pull request #20331 from NeQuissimus/libLAS_1_8_1
libLAS: 1.8.0 -> 1.8.1
2016-11-15 19:09:22 -05:00
Tim Steinbach
224331adc7
liquibase: 3.4.2 -> 3.5.3 2016-11-15 19:03:40 -05:00
Tim Steinbach
2896042738
gradle: Add variable nativeVersion 2016-11-15 18:38:48 -05:00
Shea Levy
6f7593fddc ghc-head: fix hash.
Apparently fetchgit lies...
2016-11-15 18:30:32 -05:00
Tim Steinbach
ef4a335be4
git: 2.10.1 -> 2.10.2 2016-11-15 18:05:02 -05:00
Tim Steinbach
a4cd6f1378 Merge pull request #20441 from NeQuissimus/linux_4_4_32
linux: 4.4.31 -> 4.4.32
2016-11-15 17:49:00 -05:00
Tim Steinbach
819884119c Merge pull request #20439 from NeQuissimus/linux_4_8_8
linux: 4.8.7 -> 4.8.8
2016-11-15 17:48:07 -05:00