Commit graph

111917 commits

Author SHA1 Message Date
Frederik Rietdijk 8754d64185
Merge pull request #34640 from knedlsepp/reduce-graphviz-impurity
graphviz: Explicitly specify libltdl directories
2018-02-09 19:01:19 +00:00
aszlig 1cba74dfc1
setup-hooks: Add autoPatchelfHook
I originally wrote this for packaging proprietary games in Vuizvui[1]
but I thought it would be generally useful as we have a fair amount of
proprietary software lurking around in nixpkgs, which are a bit tedious
to maintain, especially when the library dependencies change after an
update.

So this setup hook searches for all ELF executables and libraries in the
resulting output paths after install phase and uses patchelf to set the
RPATH and interpreter according to what dependencies are available
inside the builder.

For example consider something like this:

stdenv.mkDerivation {
  ...
  nativeBuildInputs = [ autoPatchelfHook ];
  buildInputs = [ mesa zlib ];
  ...
}

Whenever for example an executable requires mesa or zlib, the RPATH will
automatically be set to the lib dir of the corresponding dependency.

If the library dependency is required at runtime, an attribute called
runtimeDependencies can be used to list dependencies that are added to
all executables that are discovered unconditionally.

Beside this, it also makes initial packaging of proprietary software
easier, because one no longer has to manually figure out the
dependencies in the first place.

[1]: https://github.com/openlab-aux/vuizvui

Signed-off-by: aszlig <aszlig@nix.build>
Closes: #34506
2018-02-10 00:27:24 +05:30
Robert Schütz d436d3dac5 pythonPackages.dateparser: 0.6.0 -> 0.7.0 2018-02-09 19:57:22 +01:00
Peter Simons 2c13435734 haskell-generic-builder: revert "set LD_LIBRARY_PATH in shellHook"
This reverts commit e73e5c884f. Please don't
set $LD_LIBRARY_PATH! Instead, pass appropriate --extra-include-dir and
--extra-lib-dir arguments to "cabal configure" to ensure that Cabal knows
about system dependencies.
2018-02-09 19:56:20 +01:00
Peter Simons bd3379c443 haskell-generic-builder: include build-tool dependencies in shell environments
For a Haskell package "foo" the environment foo.env now contains the build tool
dependencies required for compiling the package in $PATH.

Fixes https://github.com/NixOS/cabal2nix/issues/331.
2018-02-09 19:56:20 +01:00
Frederik Rietdijk e44d763b1d
Merge pull request #34771 from Mic92/flexget
flexget: mark as broken
2018-02-09 18:49:22 +00:00
Frederik Rietdijk 2f8f967a0c
Merge pull request #34769 from dotlambda/pytz
pythonPackages.pytz: 2017.3 -> 2018.3
2018-02-09 18:36:58 +00:00
Franz Pletz a51cda85ff
Merge pull request #34434 from markuskowa/uhd-fix-boost-pr
uhd: 3.10.2.0 -> 3.10.3.0
2018-02-09 18:33:11 +00:00
Jörg Thalheim 9622cdb69f flexget: mark as broken 2018-02-09 17:08:28 +00:00
Robert Schütz 334dd9cbf5 abcmidi: 2018.01.25 -> 2018.02.07 2018-02-09 18:04:23 +01:00
Jörg Thalheim 2e86479790
Merge pull request #34627 from dtzWill/update/rhash-git
rhash: 1.3.3 -> 2018-02-05
2018-02-09 17:01:06 +00:00
Robert Schütz bd92592e7e pythonPackages.pytz: 2017.3 -> 2018.3 2018-02-09 17:56:19 +01:00
Peter Simons 9861064f35
Merge pull request #34766 from mnacamura/r-pbdZMQ-fix-darwin
rPackages.pbdZMQ: fix package loading on Darwin
2018-02-09 17:43:03 +01:00
Jörg Thalheim 7d9313fff3
Merge pull request #34635 from zauberpony/hcloud-init-v1.3.0
hcloud: init at 1.3.0
2018-02-09 16:38:12 +00:00
Jörg Thalheim 4cf5684250
Merge pull request #34673 from jensbin/typora_0.9.43
typora: 0.9.41 -> 0.9.44
2018-02-09 16:34:54 +00:00
Jens Binkert 56a21983f9 typora: 0.9.41 -> 0.9.44 2018-02-09 17:16:32 +01:00
Jörg Thalheim 03ad93a879
Merge pull request #34701 from holidaycheck/chromedriver-2.35
chromedriver: 2.33 -> 2.35
2018-02-09 16:09:21 +00:00
Jörg Thalheim 807d76b30b
Merge pull request #34765 from greedy/fix/libproxy-darwin
libproxy: fix building on darwin
2018-02-09 16:02:42 +00:00
thorstenweber83 814a9310dc python.pkgs.awesome-slugify: fix build (#34764)
It broke because Unidecode went out of
its defined range (Unidecode>=0.04.14,<0.05)
with commit 57e9ed3719
2018-02-09 16:02:23 +00:00
Jörg Thalheim 465d7c55d9
Merge pull request #34763 from zimbatm/asciidoctor-pdf-fix
asciidoctor: expose all the bins
2018-02-09 15:59:09 +00:00
Mitsuhiro Nakamura c4658ac0a4 rPackages.pbdZMQ: fix package loading on Darwin 2018-02-10 00:54:28 +09:00
Geoffrey Reedy 7f6c4e2703 libproxy: fix building on darwin 2018-02-09 08:33:41 -07:00
Tim Steinbach 4ffe462b10
docker-edge: 18.01.0 -> 18.02.0 2018-02-09 10:25:58 -05:00
aszlig 855e66860a
gajim: 0.16.8 -> 0.16.9
Upstream changes:

  * Improve Zeroconf behavior
  * Fix showing normal message event
  * remove usage of OpenSSL.rand
  * a few minor bugfixes

The really important part here is the third point about OpenSSL.rand,
because the rand attribute no longer exists in pyopenssl and thus Gajim
doesn't even start.

Also the fix-tests.patch has been fixed upstream as well, so we don't
need it anymore.

Another change in 0.16.9 that's not included in the changelog is that
there is a test_nogui target, which is also run by the CI upstream is
using, so let's use that and remove xvfb_run.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @7c6f434c, @Mic92
2018-02-09 16:22:42 +01:00
Frederik Rietdijk 669e03ecce
Merge pull request #34647 from jraygauthier/jrg/pythonnet-rebased
pythonnet: Init at 2.3.0
2018-02-09 15:20:25 +00:00
José Luis Lafuente 3b6f8b5b15 youtube-dl: 2018.01.27 -> 2018.02.08 (#34762) 2018-02-09 15:17:22 +00:00
zimbatm 6f56749b07 asciidoctor: expose all the bins
asciidoctor has multiple binaries, expose them all to the user
2018-02-09 14:40:22 +00:00
Chris Hodapp c6bd327af8
darktable: Removed unneeded dependencies
Based on what LebedevRI told me on IRC and in
https://github.com/darktable-org/darktable/pull/1474
2018-02-09 13:13:31 +01:00
Sam Parkinson 8a7fd9d41f
spice-up: init at 1.2.1 2018-02-09 22:30:09 +11:00
Sam Parkinson 197d9a8d90
granite: refactor package
* move build time dependencies into nativeBuildInputs
* convert cmakeFlags to an array
* use `with` in the meta section
* add `ninja`
2018-02-09 22:23:37 +11:00
Peter Hoeg 0cdc0ac3a1 screenfetch: 2016-10-11 -> 3.8.0 2018-02-09 18:05:10 +08:00
Jörg Thalheim 3b9beaf842
Merge pull request #34658 from thorstenweber83/add-package-slic3r-prusa3d
slic3r-prusa3d: init at 1.38.7
2018-02-09 09:51:13 +00:00
Jörg Thalheim 9e39a7b4e0
Merge pull request #34652 from mbrgm/upgrade-keepalived
keepalived: 1.3.6 -> 1.4.1
2018-02-09 09:47:44 +00:00
Jörg Thalheim 5b247f741d
Merge pull request #34677 from dtzWill/feature/busybox-sandbox-shell
busybox-sandbox-shell: extract basic shell to new attribute
2018-02-09 09:32:55 +00:00
Jörg Thalheim abfac62df5 alacritty: 2017-12-29 -> 2018-01-31 2018-02-09 09:31:18 +00:00
Jörg Thalheim a1fe3ee2f9
Merge pull request #34689 from dtzWill/fix/zsh-modern
zsh: set configureFlags and checkFlags at nix level, also fix cross
2018-02-09 09:29:32 +00:00
Jörg Thalheim a0a3298091
Merge pull request #34663 from bignaux/squashfuse
squashfuse: init at 0.1.101
2018-02-09 09:23:23 +00:00
Jörg Thalheim d0bac026ec
Merge pull request #34695 from woffs/uudeview
uudeview: init at 0.5.20
2018-02-09 09:11:08 +00:00
Jörg Thalheim b797b2b961
Merge pull request #34709 from sifmelcara/fix/rstudio-version
rstudio: 1.1.414 -> 1.1.423
2018-02-09 09:00:58 +00:00
Matthieu Chevrier 00970f76f9 theharvester: init at 2.7.1 (#34704) 2018-02-09 09:00:15 +00:00
adisbladis d1c5b483d2
yaml2json: init at unstable-2017-05-03 2018-02-09 16:46:21 +08:00
Jörg Thalheim 7ca084292a
Merge pull request #34714 from vbgl/coq-default-to-8.7
coq: default to 8.7
2018-02-09 08:45:31 +00:00
Jörg Thalheim 62f7640ebe
Merge pull request #34727 from vbgl/pg-HEAD-20180130
proofgeneral_HEAD: 2017-11-06 -> 2018-01-30
2018-02-09 08:45:09 +00:00
Lucca Fraser 09d04f6b6f electrum-dash: 2.4.1 -> 2.9.3.1 2018-02-09 08:41:18 +00:00
Jörg Thalheim dad8a01530
Merge pull request #34739 from ryantm/ataripp
ataripp: 1.73 -> 1.81
2018-02-09 08:27:38 +00:00
Jörg Thalheim 76a08d4a83
Merge pull request #34703 from Ma27/make-overriding-vim-configurable-easier
vim_configurable: enable overrides
2018-02-09 08:15:27 +00:00
Jörg Thalheim 58278aec16
Merge pull request #34738 from dotlambda/pytest-sugar
pythonPackages.pytest-sugar: 0.9.0 -> 0.9.1
2018-02-09 08:06:29 +00:00
mkgvt f41eb52bc9 rename: init at 1.9 (#34719) 2018-02-09 08:05:11 +00:00
Jörg Thalheim 4db906e185
Merge pull request #34730 from karolchmist/dotty-bump-0.6.0
dotty: 0.4.0 -> 0.6.0
2018-02-09 07:58:59 +00:00
Jörg Thalheim 1c73182f92
Merge pull request #34742 from hedning/nix-completions-bump
nix-bash-completions: 0.6.2 -> 0.6.3, nix-zsh-completions: 0.3.7 -> 0.3.8
2018-02-09 07:54:43 +00:00
adisbladis 8aa966d7ea
Merge pull request #34746 from markus1189/spotify
spotify: 1.0.69.336.g7edcc575-39 -> 1.0.70.399.g5ffabd56-26
2018-02-09 15:54:04 +08:00
adisbladis 2341c81427
Merge pull request #34757 from ryantm/biosdevname
biosdevname: 0.7.2 -> 0.7.3
2018-02-09 12:52:23 +08:00
Peter Hoeg 44d1f99a22 syncthing: 0.14.43 -> 0.14.44 2018-02-09 11:29:16 +08:00
Raymond Gauthier 1d1209381a pythonnet: Init at 2.3.0 2018-02-08 21:29:36 -05:00
Ryan Mulligan aefaab9516 biosdevname: 0.7.2 -> 0.7.3 2018-02-08 17:58:20 -08:00
Tim Steinbach 78a17f5765
helm: 2.7.2 -> 2.8.0 2018-02-08 18:05:04 -05:00
Daniel Peebles d21a31f15c
Merge pull request #34750 from copumpkin/fix-pkgs-fedoraproject-org
treewide: s/pkgs.fedoraproject.org/src.fedoraproject.org/
2018-02-08 17:11:48 -05:00
Miguel Madrid Mencía 468ea40ffc vifm: 0.9.0 -> 0.9.1 2018-02-08 23:05:14 +01:00
Tim Steinbach 250df5c8fd
Merge pull request #34126 from nicknovitski/kubectl
init: kubectl at 1.7.9 (alias for kubernetes with only kubectl component)
2018-02-08 21:49:57 +00:00
Dan Peebles dfd300c81d treewide: s/pkgs.fedoraproject.org/src.fedoraproject.org/
Upstream killed the pkgs server but src continues to serve up the exact
same content, so we can just point there and all hashes should be unchanged.
2018-02-08 16:38:08 -05:00
Daiderd Jordan 693ab60bb4
Merge pull request #34685 from cransom/fix-darwin-v8_3_16_14
v8_3_16_14: fix on darwin
2018-02-08 21:53:22 +01:00
Robert Helgesson 76f3f22d27
perl-Encode: 2.93 -> 2.95 2018-02-08 21:01:12 +01:00
Robert Helgesson d3fc84de94
perl-Sub-Quote: 2.003001 -> 2.005000 2018-02-08 21:00:12 +01:00
Robert Helgesson c086125ce5
perl-Crypt-JWT: 0.019 -> 0.020 2018-02-08 20:21:54 +01:00
Robert Helgesson 6dfb0be3ce
perl-bignum: 0.47 -> 0.49 2018-02-08 20:07:50 +01:00
Vladimír Čunát 55bbcd4e48
linuxPackages.nvidia_x11_beta: alias to stable
It doesn't seem much sense to have "beta" with version lower than "stable".
2018-02-08 19:55:28 +01:00
Vladimír Čunát 9d5ab32f01
polipo: mark as vulnerable (close #33709) 2018-02-08 18:50:41 +01:00
Markus Hauck b21952e766 spotify: 1.0.69.336.g7edcc575-39 -> 1.0.70.399.g5ffabd56-26 2018-02-08 18:46:51 +01:00
Tim Steinbach 86ab2e3842
Merge pull request #34446 from nlewo/pr/skopeo
skopeo: remove the patch by setting a variable at build time
2018-02-08 16:19:46 +00:00
Tor Hedin Brønner 2954c6ce86 nix-zsh-completions: 0.3.7 -> 0.3.8 2018-02-08 17:13:29 +01:00
Tor Hedin Brønner 37fb8d3e11 nix-bash-completions: 0.6.2 -> 0.6.3 2018-02-08 17:09:47 +01:00
Ryan Mulligan 64fbc476b7 ataripp: 1.73 -> 1.81
fixes #34725
2018-02-08 07:43:34 -08:00
Joachim F 9da4da5879
Merge pull request #34721 from mdorman/semi-automated-emacs-package-updates
Semi automated emacs package updates
2018-02-08 15:08:44 +00:00
Robert Schütz e7fc9fe5e1 pythonPackages.pytest-sugar: 0.9.0 -> 0.9.1 2018-02-08 15:35:41 +01:00
Graham Christensen a1383aa75f
Merge pull request #34571 from esoeylemez/ertes-slade
slade-git: init at 2018.01.29
2018-02-08 09:35:17 -05:00
Graham Christensen 6e782a0ef6
Merge pull request #34572 from esoeylemez/ertes-bcc
doom-bcc-git: init at 2018.01.04
2018-02-08 09:34:37 -05:00
Frederik Rietdijk ec506fdfbc
Merge pull request #34736 from dotlambda/pecan
pythonPackages.pecan: remove superfluous patch
2018-02-08 14:16:18 +00:00
Robert Schütz f4ff322d72 pythonPackages.pecan: remove superfluous patch 2018-02-08 15:10:01 +01:00
Tim Steinbach 74e56de70c
hipchat: 4.30.2.1665 -> 4.30.3.1670 2018-02-08 09:01:40 -05:00
Antoine Eiche a38cb9411c skopeo: 0.1.27 -> 0.1.28 2018-02-08 14:33:58 +01:00
Frederik Rietdijk 28e0126876
Merge pull request #34733 from geistesk/fpdf
fpdf: init at 1.7.2
2018-02-08 12:43:08 +00:00
geistesk 266292a4bc fpdf: init at 1.7.2 2018-02-08 13:39:10 +01:00
Frederik Rietdijk b2065cc132
Merge pull request #34734 from dotlambda/home-assistant
home-assistant: fix tests by pinning pytest==3.3.1
2018-02-08 12:23:41 +00:00
Eelco Dolstra aea208c0b9
Merge pull request #34732 from taku0/flashplayer-28.0.0.161
flashplayer: 28.0.0.137 -> 28.0.0.161 [Critical security fixes]
2018-02-08 13:13:37 +01:00
Eelco Dolstra f86b13ac95
Merge pull request #34731 from taku0/firefox-bin-58.0.2
firefox: 58.0.1 -> 58.0.2
2018-02-08 13:13:07 +01:00
Robert Schütz bfcea0c05d home-assistant: fix tests by pinning pytest==3.3.1 2018-02-08 13:02:57 +01:00
Andreas Rammhold 7a833cfcb8 nvidia_x11_beta: 381.22 -> 390.12
This change is done for completness in regards to [1] since we already
support a newer "stable" version.

nvidia_x11_beta now compiles on both 4.14 and 4.15.

[1] https://github.com/NixOS/nixpkgs/issues/31640
2018-02-08 12:55:45 +01:00
taku0 0ff2f9be67 flashplayer: 28.0.0.137 -> 28.0.0.161 2018-02-08 20:51:32 +09:00
Michael Raskin a600b621c8 linux_4_15: fix a partial version downgrade on staging merge 2018-02-08 12:43:08 +01:00
Frederik Rietdijk 50a9d51a09 Merge commit '30d031b5d8d05422586043c3f105f4d9110e4f59' into HEAD 2018-02-08 12:14:07 +01:00
Frederik Rietdijk 2e6032ff75
Merge pull request #34678 from jluttine/update-pytest-cram
pythonPackages.pytest-cram: 0.1.1 -> 0.2.0
2018-02-08 11:04:04 +00:00
Frederik Rietdijk 712c322122
Merge pull request #34532 from unode/pysam
pysam: init at 0.13
2018-02-08 11:02:32 +00:00
Frederik Rietdijk c0c366c8af
Merge pull request #34533 from unode/dendropy
dendropy: init at 4.3.0
2018-02-08 11:00:32 +00:00
Karol Chmist 7bfc62a377 dotty: 0.4.0 -> 0.6.0 2018-02-08 10:23:08 +01:00
adisbladis 7876f667b8
Merge pull request #34723 from dtzWill/update/heaptrack-2018-01-28
heaptrack: 2017-10-30 -> 2018-01-28, enable chart goodness
2018-02-08 17:12:53 +08:00
Vincent Laporte 8cc3fcdfd4
proofgeneral_HEAD: 2017-11-06 -> 2018-01-30 2018-02-08 06:24:14 +00:00
adisbladis e860b651d6
Merge pull request #34713 from dtzWill/update/zfs-spl-0.7.6
zfs, spl: 0.7.5 -> 0.7.6
2018-02-08 13:54:43 +08:00
Will Dietz a90f841769 heaptrack: Add dep on kdiagram for chart goodness 2018-02-07 20:56:54 -06:00
Will Dietz 427a4cd463 heaptrack: don't be specific about boost 2018-02-07 20:56:54 -06:00
Will Dietz 11d9f3aae1 heaptrack: 2017-10-30 -> 2018-01-28 2018-02-07 20:56:54 -06:00
adisbladis c21625023e
Merge pull request #34717 from eqyiel/awsebcli-3.12.2
awsebcli: 3.12.1 -> 3.12.2
2018-02-08 09:57:58 +08:00
Graham Christensen 48da3ea30f
Merge pull request #34718 from eqyiel/flow-0.65.0
flow: 0.64.0 -> 0.65.0
2018-02-07 20:08:28 -05:00
Tim Steinbach 9bc383a9f3
oh-my-zsh: 2017-12-14 -> 2018-01-22 2018-02-07 19:52:03 -05:00
Will Dietz 5da8924333 zfs, spl: 0.7.5 -> 0.7.6
Fixes compat with 4.15
(cc #34459)
2018-02-07 18:49:26 -06:00
Tim Steinbach c46a833e6c
linux-copperhead: 4.15.1.a -> 4.15.2.a 2018-02-07 19:47:20 -05:00
Tim Steinbach 9f3d57a31f
linux: 4.15.1 -> 4.15.2 2018-02-07 19:36:35 -05:00
Tim Steinbach 0b43d5a9cf
linux: 4.14.17 -> 4.14.18 2018-02-07 19:36:21 -05:00
Andreas Rammhold 4dd3a2ae38
Merge pull request #34684 from flokli/svn-all-fast-export
gitAndTools.svn_all_fast_export: init at 1.0.11
2018-02-07 23:43:22 +00:00
Ruben Maher 72326cda80 flow: 0.64.0 -> 0.65.0 2018-02-08 10:02:50 +10:30
Florian Klink 469d49718e gitAndTools.svn_all_fast_export: init at 1.0.11 2018-02-08 00:32:10 +01:00
Ruben Maher 84f30286d2 awsebcli: 3.12.1 -> 3.12.2 2018-02-08 09:37:12 +10:30
Michael Alan Dorman e843ef280e melpa-packages: 2018-02-07 2018-02-07 18:02:09 -05:00
Michael Alan Dorman d2f7f2d3d3 melpa-stable-packages: 2018-02-07 2018-02-07 18:02:03 -05:00
Michael Alan Dorman 7e9d21414d org-packages: 2018-02-07 2018-02-07 18:02:03 -05:00
Michael Alan Dorman 4dda0dbc3d elpa-packages: 2018-02-07 2018-02-07 18:02:03 -05:00
Guillaume Massé 26cfb4fdd1 vscode: 1.19.3 -> 1.20.0 2018-02-07 23:30:13 +01:00
Andreas Rammhold dc89752154
Merge pull request #34634 from dtzWill/fix/grv-version
grv: pass in version, fix "grv -version" to at least include that
2018-02-07 21:40:57 +00:00
Andreas Rammhold e90985e92a
gitAndTools.grv: 0.1.1 -> 0.1.2 2018-02-07 22:22:53 +01:00
sjau 0d65e2e0e5 zfs: add migration path for new crypto format
fixes #34559
2018-02-07 20:46:16 +00:00
Adrien Devresse 4442a377cb rocksdb: 5.1.2 -> 5.10.2
- Update rocksdb to last version
- Also enable RTTI support for rocksdb, required for Ceph
- Add missing which and perl package
2018-02-07 21:17:02 +01:00
Vincent Laporte 202fb6faea
coq: default to 8.7 2018-02-07 19:28:38 +00:00
Daiderd Jordan d74a7506f0
Merge pull request #34577 from matthewbauer/patch-8
notmuch: fix version wildcard
2018-02-07 20:16:45 +01:00
taku0 f5e6a723b8 firefox: 58.0.1 -> 58.0.2 2018-02-08 03:13:01 +09:00
taku0 a6ed912c88 firefox-bin: 58.0.1 -> 58.0.2 2018-02-08 03:12:53 +09:00
Adrien Devresse 52f6310626 lttng-ust: refactor
liburcu appears in the public API of LTTNG: it should be a
propagatedBuildInputs.
2018-02-07 18:34:53 +01:00
Daiderd Jordan c0aa8f5fb8
Merge pull request #34630 from varunpatro/lsusb
lsusb for OSX
2018-02-07 18:34:41 +01:00
mingchuan 5e31eaea9d
rstudio: 1.1.414 -> 1.1.423
Also fixes the version number displayed in GUI.
2018-02-08 01:30:45 +08:00
Alex Griffin 5704888065 mblaze: 0.3 -> 0.3.1 2018-02-07 18:54:45 +02:00
Tuomas Tynkkynen 1b6e95e1eb hdparm: 9.53 -> 9.54 2018-02-07 18:48:04 +02:00
adisbladis 51c442c007
Merge pull request #34702 from ryantm/bossa
bossa: 2014-08-18 -> 1.8
2018-02-08 00:11:02 +08:00
Maximilian Bosch 8e70725077
vim_configurable: enable overrides
Sometimes it's needed to override parts of `vim_configurable`, for
instance when using ENSIME (http://ensime.github.io/), in this case you
need a Python interpreter and the modules `sexpdata` and
`websocket_client`.

However overriding `vim_configurable` is quite hard as we run
`vimUtils.makeCustomizable` over the default comming from
`configurable.nix`. Therefore it's necessary to copy the code from
`all-packages.nix` and alter the parts you need: https://nixos.org/nix-dev/2017-April/023364.html

In order to simplify overriding `vim_configurable` I added an
`override` and an `overrideAttrs` function to `vimutils.makeCustomizable`
to ensure that the customization capabilities won't be lost after
altering the derivation.

Now it's possible to write expressions like this without evaluation
failures:

```
with pkgs;

let
  vimPy3 = vim_configurable.override {
    python = python3;
  };
in vimPy3.customize { ... }
```
2018-02-07 16:57:40 +01:00
Mathias Schreck 7bd68dff1e chromedriver: 2.33 -> 2.35 2018-02-07 16:57:10 +01:00
adisbladis ad9fbd93ab
Merge pull request #34700 from k0001/el306
electrum: 3.0.5 -> 3.0.6
2018-02-07 23:51:07 +08:00
adisbladis 26e80dea72
Merge pull request #34694 from rvolosatovs/update/mopidy-iris
mopidy-iris: 3.11.0 -> 3.12.4
2018-02-07 23:37:34 +08:00
Renzo Carbonara 07c7a81b24 electrum: 3.0.5 -> 3.0.6 2018-02-07 16:31:46 +01:00
adisbladis dda6f49192
uriparser: 0.8.4 -> 0.8.5 2018-02-07 23:29:16 +08:00
adisbladis 2c92eceee6
firefox-devedition-bin: 59.0b6 -> 59.0b7 2018-02-07 23:21:44 +08:00
adisbladis 9e55e5a07e
firefox-beta-bin: 59.0b6 -> 59.0b7 2018-02-07 23:21:43 +08:00
Graham Christensen c46c2e281b
Merge pull request #33237 from jluttine/add-diskrsync
diskrsync: init at 20170927
2018-02-07 08:15:20 -05:00
Andreas Rammhold 90c0341ca5
Merge pull request #34581 from andir/squid
Squid fix CVE-2018-1000024 & CVE-2018-1000027
2018-02-07 11:09:42 +00:00
Andreas Rammhold ea817d7b6f
squid: fix CVE-2018-1000024 & CVE-2018-1000027 2018-02-07 11:40:46 +01:00
Andreas Rammhold 291b05ee21
squid4: hack to detect our libxml2 2018-02-07 11:40:46 +01:00
Frank Doepper ef727716cf uudeview: init at 0.5.20 2018-02-07 11:38:58 +01:00
Roman Volosatovs 99167e34c9
mopidy-iris: 3.11.0 -> 3.12.4 2018-02-07 11:15:30 +01:00
Andreas Rammhold 95f4d6ba1c
mpv: fix CVE-2018-6460
Upstream has fixed this in a series of commits ontop of 0.28.0. Debian
has backported the fixes to 0.27.0.

Upstream issue: https://github.com/mpv-player/mpv/issues/5456
Debian bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=888654#8
2018-02-07 10:01:16 +01:00
Peter Simons 8ff7ac4859
Merge pull request #34646 from clacke/hledger-darwin
hledger: build correctly on darwin
2018-02-07 08:32:59 +01:00
Peter Simons fa23ff4a7d
Merge pull request #34651 from mnacamura/r-darwin-libcxx
R: add libcxx to default LDFLAGS and CPPFLAGS on Darwin
2018-02-07 08:31:10 +01:00
Peter Simons 725e98fe85
Merge pull request #34682 from deepfire/ghc-8.4
ghc841:  bump to alpha3
2018-02-07 08:22:55 +01:00
Varun Patro e8f480fb6c
Add 'varunpatro' as a maintainer. 2018-02-07 13:59:34 +08:00
Daniel Peebles 30d031b5d8
Merge pull request #34339 from bdarnell/curl-http2-darwin
curlFull: Add http2Support for darwin
2018-02-07 00:28:53 -05:00
adisbladis 910b5cda19
Merge pull request #34686 from flokli/afew-1.3.0
afew: 1.2.0 -> 1.3.0
2018-02-07 13:14:55 +08:00
Ben Darnell c6aa69f48c curl: Enable http2Support for darwin
http2Support was disabled due to a bootstrapping issue involving xz.
Now that xz is available in the bootstrap environment for all
platforms, http2Support can be enabled globally.
2018-02-06 21:50:28 -05:00
Peter Hoeg 237ae9a0d1
Merge pull request #34659 from peterhoeg/p/nmapsi4
nmapsi4: init at 0.5-alpha1
2018-02-07 10:14:53 +08:00
Will Dietz 2b8e900403 zsh: set configureFlags and checkFlags at nix level, also fix cross
As-is the use of 'configureFlags="..."' breaks cross compilation
as it drops the configure platforms arguments.

Set zprofile separately to handle $out.
2018-02-06 20:14:52 -06:00
Andrew Dunham d3f76d7747 Fix build failures with DBD-SQLite
This passes the correct compilation flags to the builder so we pick up
the path to sqlite, and (despite the fact that it's a development
version), also updates to version 1.55_07 to fix
https://github.com/DBD-SQLite/DBD-SQLite/issues/28
2018-02-06 18:06:23 -08:00
Daniel Frank bfa1390b47
burp: 2.0.54 -> 2.1.28 2018-02-07 10:01:42 +08:00
adisbladis be8cc03ffe
Merge pull request #34679 from dtzWill/update/bfg-1.13.0
bfg-repo-cleaner: 1.12.15 -> 1.13.0
2018-02-07 09:49:40 +08:00
Tuomas Tynkkynen 4c6c919a31 Merge remote-tracking branch 'upstream/master' into HEAD
Conflicts:
	pkgs/os-specific/linux/kernel/generic.nix
2018-02-07 03:41:24 +02:00
adisbladis fc1224d55d
Merge pull request #33743 from fuzzy-id/cassandra-bump
cassandra: version bump 2.1.15->2.1.19, 2.2.9->2.2.11, 3.0.9->3.0.15
2018-02-07 09:17:32 +08:00
adisbladis 5582365d3e
Merge pull request #34664 from ryantm/autoconf-archive
autoconf-archive: 2017.03.21 -> 2017.09.28
2018-02-07 09:13:46 +08:00
Thomas Bach 30c71376c9
cassandra: 3.0.9 -> 3.0.15 2018-02-07 09:09:04 +08:00
Thomas Bach 798c6cdaca
cassandra: 2.2.9 -> 2.2.11 2018-02-07 09:08:41 +08:00
Thomas Bach a9264dbeab
cassandra: 2.1.15 -> 2.1.19 2018-02-07 09:08:17 +08:00
Florian Klink 1cc8ea4ec9 afew: 1.2.0 -> 1.3.0 2018-02-07 00:30:16 +01:00
Casey Ransom 72cd8c09ce v8_3_16_14: fix on darwin
This was switched to use gcc5 for all platforms due to a mkSnapshot
error, which fixes Linux but currently fails for Darwin. I'm unsure if
there are other runtime failures, but this hasn't been building for
quite some time.
2018-02-06 17:54:16 -05:00
Daiderd Jordan 335ae38674
Merge pull request #33871 from dtzWill/fix/llvm-5-python-closure
llvm-5: add extra 'python' output for opt-viewer tool
2018-02-06 23:33:45 +01:00
Florian Klink 44dd0b6adb svn2git_kde: remove
marked as broken anyways
2018-02-06 22:55:19 +01:00
Michael Raskin 91eb41b138
Merge pull request #33416 from the-kenny/emacs-site-lisp-subdirectory-support
Emacs `site-lisp` subdirectory support
2018-02-06 21:37:07 +00:00
Michael Raskin 907474e649
Merge pull request #33088 from exFalso/add-subdl
init subdl package
2018-02-06 21:32:53 +00:00
Michael Raskin 4b481684b1
Add a date to name 2018-02-06 21:30:36 +00:00
Michael Raskin fdcbb263ac
Merge pull request #32579 from leenaars/lwan
lwan: init -> 0.1
2018-02-06 21:26:18 +00:00
Joachim F e9dd9967ef
Merge pull request #34395 from jonafato/keybase-1.0.40
keybase: 1.0.39 -> 1.0.40
2018-02-06 21:25:30 +00:00
Michael Raskin 8eba2a5be8
Merge pull request #31312 from binarin/emacs-package-set-overrides
emacs-packages: Cleanup and document for overrides
2018-02-06 21:22:23 +00:00
Michael Raskin 1137ba5a73
Merge pull request #27734 from jfrankenau/add-desktop-entries
Add desktop entry files for FreeCAD and ddccontrol
2018-02-06 21:21:04 +00:00
Luke Sandell 4de7e5cae0 dump1090: fix html path
Use correct variable syntax for GNU Make so that HTML resources
can be found when running `dump1090 --net`. Additionally, add
view1090 binary to output.
2018-02-06 22:15:59 +01:00
Raitis 4e63119c54 terraform: add the version component to terraform provider paths (#34497)
Terraform checks the provider versions, but this breaks if the versions
are not provided, as they can be, if the plugins are provided by nix.
2018-02-06 21:09:22 +00:00
Tuomas Tynkkynen 685ceb999e kernel: Fix missing config options from platform
common-config.nix has:

${kernelPlatform.kernelExtraConfig or ""}

and indeed kernelExtraConfig is in hostPlatform.platform, and not in
hostPlatform. (Ugh.).
2018-02-06 22:13:57 +02:00
Jaakko Luttinen 44509195e5
pythonPackages.pytest-cram: 0.1.1 -> 0.2.0
This fixes pytest-cram after the recent pytest upgrading broke it.
2018-02-06 21:49:44 +02:00
Will Dietz 2e0540f346 bfg-repo-cleaner: 1.12.15 -> 1.13.0 2018-02-06 13:49:09 -06:00
Michael Raskin 5e8ae8d597
Merge pull request #34674 from dtzWill/feature/diff-pdf
diff-pdf: init at 2017-12-30.
2018-02-06 19:33:59 +00:00
Kosyrev Serge 6419664793
ghc841: bump to alpha3 2018-02-06 21:58:32 +03:00
Will Dietz 9e2993e75a diff-pdf: Try to fix darwin build 2018-02-06 12:57:52 -06:00
Will Dietz b963f06f5a diff-pdf: init at 2017-12-30. 2018-02-06 11:57:55 -06:00
Claes Wallin (韋嘉誠) cc2c594a9b hledger*: build correctly on darwin
- mkdir -p $out/share/info rather than assuming $out/share is there
 - find .info and .man* files correctly on darwin -- don't try to
   match the specific system name, there is nothing to gain from that

nix calls darwin darwin, but ghc calls it osx in its directory names.

closes #34644
2018-02-07 01:32:16 +08:00
John Ericson 63b8175281
Merge pull request #34351 from teto/kernel_wip
[RDY] buildLinux: Add more overrides
2018-02-06 12:08:12 -05:00
Matthieu Coudron f620b1b693 kernel: buildLinux replaces import ./generic.nix
- defined buildLinux as generic.nix instead of manual-config.nix. This
makes kernel derivations a tad more similar to your typical derivations.
- moved $buildRoot to within the source folder, this way it doesn't have to be created before the unpackPhase
and make it easier to work on kernel source without running the unpackPhase
2018-02-07 10:07:13 +09:00
Peter Hoeg d4df7aadf9 cryfs: 0.9.8 -> 0.9.9 2018-02-07 00:29:04 +08:00
Frederik Rietdijk ef64766efb
Merge pull request #34653 from mbrgm/upgrade-unifi
unifi: 5.6.29 -> 5.6.30
2018-02-06 16:26:07 +00:00
Frederik Rietdijk ec26c65bce
Merge pull request #34643 from dotlambda/dateparser
pythonPackages.dateparser: switch to parameterized and thereby fix Hydra test
2018-02-06 16:23:58 +00:00
Ryan Mulligan 8930a14422 autoconf-archive: 2017.03.21 -> 2017.09.28 2018-02-06 07:35:31 -08:00
adisbladis ba3d1c0814
Merge pull request #34668 from unode/samtools-1.7
samtools & htslib: 1.6 -> 1.7
2018-02-06 23:17:56 +08:00
adisbladis 2570f738fd
Merge pull request #34670 from ryantm/antimony
antimony: 0.9.2 -> 0.9.3
2018-02-06 23:16:56 +08:00
adisbladis 2ee827ec8b
Merge pull request #34667 from ryantm/archivemount
archivemount: 0.8.3 -> 0.8.7
2018-02-06 23:16:12 +08:00
adisbladis 4c7374617a
Merge pull request #34665 from ryantm/augeas
augeas: 1.10.0 -> 1.10.1
2018-02-06 23:15:41 +08:00
adisbladis 5f17cd4c0b
Merge pull request #34669 from ryantm/bcunit
bcunit: 3.0 -> 3.0.2
2018-02-06 23:13:33 +08:00
Ryan Mulligan 977b996516 antimony: 0.9.2 -> 0.9.3 2018-02-06 07:01:01 -08:00
Ryan Mulligan 104551ed0b bcunit: 3.0 -> 3.0.2 2018-02-06 06:47:12 -08:00
Joachim F 8d466f7ae9
Merge pull request #34575 from jonafato/keybase-gui-icon
keybase-gui: fix missing desktop file
2018-02-06 14:44:50 +00:00
Joachim F 97ab8d8981
Merge pull request #17106 from spacefrogg/openafs
openafs: Refactor and introduce server module
2018-02-06 14:43:55 +00:00
Renato Alves 154d1d2f19
samtools: 1.6 -> 1.7 2018-02-06 15:38:00 +01:00
Renato Alves b2284e0454
htslib: 1.6 -> 1.7 2018-02-06 15:37:50 +01:00
Bignaux Ronan e2bf162f04 remove platforms.darwin support 2018-02-06 15:34:51 +01:00
Ryan Mulligan 94e449b699 archivemount: 0.8.3 -> 0.8.7 2018-02-06 06:27:25 -08:00
Ryan Mulligan a48222b3e1 augeas: 1.10.0 -> 1.10.1 2018-02-06 06:19:01 -08:00
Bignaux Ronan 17210fee46 squashfuse: init at 0.1.101 2018-02-06 15:03:39 +01:00
Michael Raitza eca3e88e63 openafs: 1.6.22.1 -> 1.6.22.2
Minor update. Adds support for linux kernel up to 4.15.
2018-02-06 14:14:08 +01:00
Robert Schütz 029fa375c8 pythonPackages.nose-parameterized: uninit because deprecated 2018-02-06 13:16:30 +01:00
Thorsten Weber c055b010df slic3r-prusa3d: init at 1.38.7 2018-02-06 11:50:37 +01:00
Mitsuhiro Nakamura f4a031c63f R: add libcxx to default LDFLAGS and CPPFLAGS on Darwin 2018-02-06 18:57:12 +09:00
Renato Alves a6ee80aa18
dendropy: init at 4.3.0 2018-02-06 10:06:12 +01:00
Peter Simons a9268dd694
Merge pull request #34404 from deepfire/x-ghc-8.4-overrides
GHC 8.4 package overrides
2018-02-06 10:01:15 +01:00
Marius Bergmann 2841725034 unifi: 5.6.29 -> 5.6.30 2018-02-06 08:48:17 +01:00
Marius Bergmann 448fdc221c keepalived: 1.3.6 -> 1.4.1 2018-02-06 08:37:00 +01:00
Peter Hoeg ae604faabb nmapsi4: init at 0.5-alpha1 2018-02-06 14:41:21 +08:00
adisbladis 6ad0e947eb
Merge pull request #34648 from ryantm/binaryen
binaryen: 33 -> 42
2018-02-06 13:43:10 +08:00
adisbladis 0b45792538
Merge pull request #34649 from ryantm/autorandr
autorandr: 1.1 -> 1.4
2018-02-06 13:41:53 +08:00
Ryan Mulligan 295934adda bear: 2.2.1 -> 2.3.11 2018-02-05 21:13:54 -08:00
Ryan Mulligan 9801326d32 autorandr: 1.1 -> 1.4 2018-02-05 20:56:47 -08:00
Ryan Mulligan 636968b3ec binaryen: 33 -> 42 2018-02-05 20:50:02 -08:00
Ryan Mulligan 84ea1ba890 bossa: 2014-08-18 -> 1.8 2018-02-05 20:29:26 -08:00
Kosyrev Serge ae1e9fbf87
ghc841 configuration: overrides 2018-02-06 05:33:07 +03:00
Tuomas Tynkkynen 9548028a22 Merge remote-tracking branch 'upstream/master' into staging
Conflicts:
	pkgs/os-specific/linux/cpupower/default.nix
2018-02-06 04:11:23 +02:00
adisbladis da82aff2b0
Merge pull request #34637 from holidaycheck/jenkins-2.105
jenkins: 2.103 -> 2.105
2018-02-06 09:57:20 +08:00
adisbladis 35b76e23e4
Merge pull request #34639 from aborsu/nextcloud
nextcloud: 12.0.4 -> 12.0.5
2018-02-06 09:54:40 +08:00
Robert Schütz f3e87bf50f pythonPackages.dateparser: switch to parameterized
nose-parameterized is deprecated and yields a warning
2018-02-06 00:56:42 +01:00
Renato Alves 37680b046c
pysam: init at 0.13.0
A python library to interact with SAM/BAM/CRAM files
2018-02-06 00:53:32 +01:00
Cray Elliott b9f3d49edd obs-studio: 20.1.3 -> 21.0.2 2018-02-05 14:05:31 -08:00
Daiderd Jordan d5ccec3c4e
libgcrypt: fix darwin build 2018-02-05 21:57:53 +01:00
Daiderd Jordan 6f868088df
libassuan: fix darwin build 2018-02-05 21:57:52 +01:00
Daiderd Jordan d3b3827154
libksba: fix darwin build 2018-02-05 21:57:45 +01:00
Eelco Dolstra c08e4b9102
boost: Don't store absolute path in #line
This causes packages to have boost.dev in their runtime closures, via
assertion messages.

Fixes #34462.
2018-02-05 21:56:43 +01:00
Josef Kemetmueller ceeacd5205 graphviz: Explicitly specify libltdl directories
This should prevent the build from picking up /usr/lib/libltdl.so in
non-chroot builds on non-nixOS.
2018-02-05 20:41:22 +00:00
Augustin Borsu ab664977bb nextcloud: 12.0.4 -> 12.0.5 2018-02-05 21:31:04 +01:00
Mathias Schreck 674b39b048 jenkins: 2.103 -> 2.105 2018-02-05 20:13:28 +01:00
Will Dietz 9ee6f46606 grv: pass in version, fix "grv -version" to at least include that
Currently:
$ grv -version
GRV - Git Repository Viewer Unknown (commit: Unknown, compiled: Unknown)

After:
$ grv -version
GRV - Git Repository Viewer 0.1.1 (commit: Unknown, compiled: Unknown)
2018-02-05 12:19:15 -06:00
Elmar Athmer 04769e898f hcloud: init at 1.3.0 2018-02-05 19:14:55 +01:00
Shea Levy 39f62c770b
haxl: Disable non-deterministic tests 2018-02-05 13:00:12 -05:00
Symphorien Gibol 9d5cce6767 vimPlugins.targets-vim: init at 2017-12-03 2018-02-05 18:35:16 +01:00
Will Dietz 6ec60e8c44 busybox-sandbox-shell: extract basic shell to new attribute
Nix will use this shell if the attribute is present,
avoiding duplicating changes in the future.
2018-02-05 11:26:01 -06:00
Varun Patro db4e825619
Update darwin-packages.nix 2018-02-06 00:41:35 +08:00
Varun Patro 6626349a03
Create default.nix 2018-02-06 00:35:55 +08:00
Will Dietz 74d928cf8b nix: enable more features in busybox shell to resolve build failures 2018-02-05 09:19:54 -06:00
Will Dietz 4faac207bc nix: fix config for echo/test on newer busybox
Matches
2f1a1c5a49
2018-02-05 09:18:39 -06:00
Bignaux Ronan 65f90f9c67 assaultcube: init at official master branch , rev = "9f537b0876a39d7686e773040469fbb1417de18b" (#34623)
* assaultcube: init at official git master branch
2018-02-05 16:06:49 +01:00
Will Dietz 9ccbb2aa37 rhash: Remove unused darwin patch 2018-02-05 09:06:24 -06:00
Will Dietz 088274bf2c rhash: 1.3.5 -> 2018-02-05
Latest git is much more build-friendly.
2018-02-05 08:55:05 -06:00
adisbladis a16ccacb91
Merge pull request #34625 from magnetophon/htop
htop: 2.02 -> 2.1.0
2018-02-05 22:16:21 +08:00
Bart Brouns 8a72d2a322 htop: 2.02 -> 2.1.0 2018-02-05 15:07:19 +01:00
Timo Kaufmann 272e930827 sage: fix non-deterministic build failures
The build was failing on some machines because of a `find` command that
touched files in different orders on different machines.

That confused `make`s timestamp mechanism.
2018-02-05 15:03:24 +01:00
Andreas Rammhold 2bff46d193
Merge pull request #34593 from taktoa/taktoa/gnuradio-wrapper-fix
gnuradio: fix wrapper
2018-02-05 13:52:48 +00:00