Commit graph

157607 commits

Author SHA1 Message Date
Alyssa Ross 94360c11e9
docs: update sample postgresql package
postgresql90 no longer exists in nixpkgs.
2018-10-30 12:40:24 +00:00
Alyssa Ross 9594b59f13
postgresql10: rename from postgresql100 2018-10-30 12:40:20 +00:00
Tuomas Tynkkynen 2380f6a4fa nixos/tests/rsyslogd: Fix eval 2018-10-30 14:27:44 +02:00
Jörg Thalheim d23d25ebbb
Merge pull request #47594 from midchildan/add-sourcetrail
sourcetrail: init at 2018.3.55
2018-10-30 12:07:51 +00:00
Timo Kaufmann be08e69372
Merge pull request #49447 from timokau/memory_profiler-0.54.0
pythonPackages.memory_profiler: add plotting dependency, enable checks
2018-10-30 11:51:00 +01:00
xeji 8bbdee09dd
Merge pull request #49441 from srhb/debug-hydra-failures
NixOS tests: Wait for shell for 10x longer (50m)
2018-10-30 11:37:41 +01:00
Jörg Thalheim 5bb5163367
Merge pull request #49444 from xtruder/pkgs/google-cloud-sdk/222
google-cloud-sdk: 215.0.0 -> 222.0.0
2018-10-30 10:36:53 +00:00
Timo Kaufmann 64f6b9eb95 pythonPackages.memory_profiler: add plotting dependency, enable checks 2018-10-30 11:28:08 +01:00
Jörg Thalheim bb3cd00271
Merge pull request #49314 from typetetris/49257
Mention new groups `kvm` and `render` in the release notes, fixes #49257
2018-10-30 10:23:10 +00:00
Jörg Thalheim d7d0f56ddc
Merge pull request #49443 from stesie/issue-49369
tomboy: build against mono 5, refs #49369
2018-10-30 10:16:03 +00:00
Jaka Hudoklin 7df72ad928
google-cloud-sdk: 215.0.0 -> 222.0.0 2018-10-30 10:58:53 +01:00
xeji 2805c9e485
Merge pull request #48839 from romildo/upd.dde-daemon
dde-daemon: init at 3.2.24.7
2018-10-30 10:44:03 +01:00
José Romildo Malaquias eee6890fc7 matcha: 2018-10-21 -> 2018-10-30 (#49433) 2018-10-30 10:35:33 +01:00
José Romildo Malaquias f51f526f6b deepin-gtk-theme: 17.10.8 -> 17.10.9 (#49432) 2018-10-30 10:34:49 +01:00
Stefan Siegl 74cfbd63e1
tomboy: build against mono 5, refs #49369 2018-10-30 10:08:39 +01:00
Sarah Brofeldt 9bc10e1291 NixOS tests: Wait for shell for 10x longer (50m) 2018-10-30 09:22:42 +01:00
Sarah Brofeldt 5c1c90a9ad
Merge pull request #49389 from colemickens/ffmpeg
ffmpeg: enable libdrm
2018-10-30 09:16:18 +01:00
Eric Wolf 30d2792091 nixos/release-notes for 18.09: fix missing entry
- the addition of the groups kvm and render breaks the configuration of
   users, which added them
2018-10-30 08:41:13 +01:00
Théo Zimmermann 2f9fc897eb Add mention of nix-prefetch-github. (#49336) 2018-10-30 01:24:07 +01:00
Elis Hirwing b8040919b0 dmrconfig: 2018-10-20 -> 2018-10-29 (#49419)
Support for more devices were added.
2018-10-30 01:08:51 +01:00
Andrew Miller d837fe68ae hy: 0.14.0 -> 0.15.0 (#49428) 2018-10-30 01:07:07 +01:00
Edmund Wu e96d14d177 vscode-extensions.ms-vscode.cpptools: update build (#48850) 2018-10-30 00:45:24 +01:00
Justin Humm 89c09d7ba1 osrm-backend: 5.18.0 -> 5.19.0 (#49108) 2018-10-30 00:31:45 +01:00
Ryan Mulligan 2be286436c
Merge pull request #49003 from r-ryantm/auto-update/python3.6-django-classy-tags
python36Packages.django_classytags: 0.6.1 -> 0.8.0
2018-10-29 16:00:00 -07:00
xeji 21a7ca7c08
Merge pull request #49074 from c0bw3b/pkg/veracrypt
veracrypt: 1.22 -> 1.23 / truecrypt: remove and alias to veracrypt
2018-10-29 23:53:29 +01:00
Uli Baum e1ff8dc5df pythonPackages.django_classytags: clarify why tests are disabled 2018-10-29 23:44:34 +01:00
Jörg Thalheim 3a432b5885
Merge pull request #49425 from tuxinaut/master
vim-plugins/iceberg: init at 2018-10-18
2018-10-29 21:44:09 +00:00
Alyssa Ross 69dcb1a2c0 bundlerApp: take buildInputs (#45435)
It would be reasonable to have a Ruby program that depends on some other
program being in the PATH. In this case, the obvious thing to do would
be something like this:

    bundlerApp {
      # ...
      buildInputs = [ makeWrapper ];
      postBuild = ''
        wrapProgram "$out/bin/foo" \
          --prefix PATH : ${lib.makeBinPath [ dep ]}
      '';
    }

However, this doesn't work, because even though it just forwards most of
its arguments to `runCommand`, `bundlerApp` won't take a `buildInputs`
parameter. It doesn't even specify its own `buildInputs`, which means
that the `scripts` parameter to `bundlerApp` (which depends on
`makeWrapper`) is completely broken, and, as far as I can tell, has been
since its inception. I've added a `makeWrapper` build input if the
scripts parameter is present to fix this.

I've added a `buildInputs` option to `bundlerApp`. It's also passed
through to bundled-common because `postBuild` scripts are run there as
well. This actually means that in this example we'd end up going through
two layers of wrappers (one from `bundlerApp` and one from
bundled-common), but that has always been the case and isn't likely to
break anything. That oddity does suggest that it might be prudent to
not forward `postBuild` to bundled-common (or to at least use a
different option) though...

FWIW, as far as I can tell no package in nixpkgs uses either the
`scripts` or `postBuild` options to `bundlerApp`.
2018-10-29 22:39:51 +01:00
Denny Schäfer 2cf654a64e
vim-plugins/iceberg init 2018-10-29 22:10:33 +01:00
Joachim F 3947b88389
Merge pull request #49085 from hamishmack/google-fonts-macos
google-fonts: fix on macOS
2018-10-29 20:46:44 +00:00
Robin Gloster 3aec530964 gitlab: 11.4.0 -> 11.4.3 2018-10-29 20:42:02 +01:00
markuskowa b07e8ff9f9
Merge pull request #49408 from pvgoran/gitea-fixInitializeRepository
gitea: include "options" directory in "data" output
2018-10-29 20:24:06 +01:00
Michael Weiss c0f6a83cc8 androidStudioPackages.{dev,canary}: 3.4.0.0 -> 3.4.0.1 2018-10-29 20:04:12 +01:00
Matthew Bauer 075e4883e0 ibus: fix cross compilation
gtk-doc is a native input so we need to use buildPackages here.
2018-10-29 13:45:40 -05:00
Frederik Rietdijk e6c0b6ff6f
Merge pull request #49070 from r-ryantm/auto-update/python3.6-dlib
python36Packages.dlib: 19.13 -> 19.16
2018-10-29 19:27:07 +01:00
Maximilian Bosch b7bc6e7f6c
pythonPackages.dlib: move expression
Initially the expression was quite small (just inherited properties from
`pkgs.dlib`), but the more it grows the better it is to store it into
its own file.
2018-10-29 18:57:19 +01:00
Maximilian Bosch ac499a345a
pythonPackages.dlib: disable AVX instructions during checkPhase 2018-10-29 18:18:39 +01:00
Pavel Goran 5f3054ef70 gitea: include "options" directory in "data" output
This directory contains template files needed for initializing new repositories.

Fixes #49404.
2018-10-29 23:16:47 +07:00
Eelco Dolstra 0d15004cba
Merge pull request #49401 from aherrmann/stringify-modules-path
nixos/lib/eval-config.nix: toString modulesPath
2018-10-29 16:21:09 +01:00
R. RyanTM d60faae441 imagemagick7: 7.0.8-12 -> 7.0.8-14 (#49298)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/imagemagick/versions
2018-10-29 16:19:33 +01:00
R. RyanTM 33925ef2b4 python36Packages.pip-tools: 2.0.2 -> 3.1.0 (#48986)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-pip-tools/versions
2018-10-29 16:09:24 +01:00
Andreas Herrmann 044ceae280 nixos/lib/eval-config.nix: toString modulesPath
Referencing modulesPath in NixOS configurations can cause evaluation
errors in restricted mode.  If used as `${modulesPath}` (as in all
use-sites in nixpkgs) the modules subtree is copied into its own store
path. Access to this path will be forbidden in restricted mode.

Converting to a string solves this issue.
`${builtins.toString modulesPath}` will point to a subdirectory of the
nixpkgs tree out of which evalModules is called.

This change converts modulesPath to a string by default so that the
call-site doesn't have to anymore.
2018-10-29 15:46:20 +01:00
Vladyslav M 79c7ccd351
Merge pull request #49391 from dtzWill/update/fd-7.2.0
fd: 7.1.0 -> 7.2.0
2018-10-29 15:30:15 +02:00
Robert Schütz 8f415fdf80
Merge pull request #48892 from sveitser/update/pythonPackages.sh
pythonPackages.sh: 1.11 -> 1.12.14
2018-10-29 14:21:36 +01:00
Robert Schütz 65b4c9b3d4 python.pkgs.python-packer: remove dependency pinning 2018-10-29 14:15:45 +01:00
R. RyanTM e8df5045ca python36Packages.mail-parser: 3.3.1 -> 3.4.1 (#48974)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-mail-parser/versions
2018-10-29 14:00:17 +01:00
Will Dietz a8973bb75a fd: 7.1.0 -> 7.2.0 2018-10-29 07:59:41 -05:00
R. RyanTM 15af3177d8 python36Packages.pycares: 1.0.0 -> 2.3.0 (#48983)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-pycares/versions
2018-10-29 13:59:34 +01:00
Robert Schütz 69931e1eee python3.pkgs.netdisco: 2.0.0 -> 2.2.0 2018-10-29 13:44:00 +01:00
Robert Schütz e9871745a1 home-assistant: 0.81.0 -> 0.81.1 2018-10-29 13:39:37 +01:00