Commit graph

191911 commits

Author SHA1 Message Date
Ryan Mulligan 1fad2704e7
Merge pull request #67937 from lightbulbjim/calibre
calibre: 3.47.0 -> 3.47.1
2019-09-05 06:09:33 -07:00
Peter Simons 52de09ce84 heimdall: fix the GUI front-end's run-time errors 2019-09-05 10:55:19 +02:00
Will Dietz 4f493117bb
Merge pull request #68060 from dtzWill/update/xbps-0.57
xbps: 0.56 -> 0.57
2019-09-05 02:12:57 -05:00
Marek Mahut 3a7f89fdb4
Merge pull request #68042 from dtzWill/update/v4l-utils-1.16.7
v4l-utils: 1.16.6 -> 1.16.7
2019-09-05 09:00:18 +02:00
Marek Mahut 1a5d105e04
Merge pull request #68087 from peterhoeg/u/pio4
platformio: 3.6.6 -> 4.0.3
2019-09-05 08:59:35 +02:00
Marek Mahut 88c42a26a2
Merge pull request #68093 from jonringer/bump-textacy
python3Packages.textacy: 0.6.3 -> 0.9.1
2019-09-05 08:27:23 +02:00
Marek Mahut b6fa0071e8
Merge pull request #68130 from marsam/update-terraform
terraform: 0.12.7 -> 0.12.8
2019-09-05 08:27:02 +02:00
Marek Mahut 97e72f3145
Merge pull request #68128 from marsam/update-flow
flow: 0.106.0 -> 0.107.0
2019-09-05 08:26:40 +02:00
Marek Mahut 93fa56edb1
Merge pull request #68122 from buckley310/msf5
metasploit: 4.16.1 -> 5.0.45
2019-09-05 08:26:16 +02:00
Marek Mahut 998acc5079
Merge pull request #68080 from dtzWill/update/usbguard-0.7.5
usbguard: 0.7.4 -> 0.7.5
2019-09-05 08:14:43 +02:00
Mario Rodas 12e3519344
terraform: 0.12.7 -> 0.12.8
Changelog: https://github.com/hashicorp/terraform/releases/tag/v0.12.8
2019-09-05 01:00:00 -05:00
Sarah Brofeldt 11e72e547d
Merge pull request #67563 from johanot/kubernetes-1.15-withmodulerevert
kubernetes: 1.14.3 -> 1.15.3

Also reverts the module systemd dependencies
2019-09-05 07:34:11 +02:00
aszlig 601bed3849
nixos/tests/quake3: Fix evaluation error
In c814d72b51, a bunch of packages were
changed to use the pname attribute, among them were the quake3-demodata
and quake3-pointrelease which we use for the quake3 test.

Fortunately, having pname available means that we no longer need to
match using a prefix, so fixing this eval error also simplifies our
matching.

I directly pushed this to master because the change is non-controversial
and we can't break things that are already broken :-)

Signed-off-by: aszlig <aszlig@nix.build>
2019-09-05 07:00:12 +02:00
Will Dietz 5e86891baa
Merge pull request #68082 from dtzWill/update/pngquant-2.12.5
pngquant: 2.12.1 -> 2.12.5
2019-09-04 21:29:03 -05:00
Will Dietz 222422f87f
usbguard-nox: deprecate 2019-09-04 21:24:11 -05:00
Will Dietz ef414c2676
Merge pull request #68036 from dtzWill/update/victor-mono-1.2.5
victor-mono: 1.2.1 -> 1.2.5
2019-09-04 21:13:20 -05:00
Will Dietz 7e48d74986
Merge pull request #68062 from dtzWill/update/fwts-19.08.00
fwts: 19.07.00 -> 19.08.00
2019-09-04 21:10:35 -05:00
Will Dietz c96a378fb4
Merge pull request #68034 from dtzWill/update/sudo-font-0.40
sudo-font: 0.37 -> 0.40
2019-09-04 20:57:32 -05:00
Will Dietz 222307978c
Merge pull request #68047 from dtzWill/update/txr-224
txr: 220 -> 224
2019-09-04 20:55:32 -05:00
Will Dietz d043c9e3fc
Merge pull request #68053 from dtzWill/update/taskell-1.6.1
taskell: 1.6.0 -> 1.6.1
2019-09-04 20:54:09 -05:00
Will Dietz 2e808509f0
xbps: fix build w/glibc, disable errors due to unused fread result 2019-09-04 20:47:29 -05:00
Mario Rodas 584ca4c8ee
flow: 0.106.0 -> 0.107.0
Changelog: https://github.com/facebook/flow/releases/tag/v0.107.0
2019-09-04 20:00:00 -05:00
Sean Buckley 7d7d9e57f8 metasploit: 4.16.1 -> 5.0.45 2019-09-04 20:44:50 -04:00
Mario Rodas 044cc701c2
Merge pull request #68048 from marsam/update-netdata
netdata: 1.16.0 -> 1.17.0
2019-09-04 18:37:21 -05:00
Katharina Fey 589c156869 nixos/railcar: small style changes 2019-09-04 22:46:42 +00:00
Katharina Fey 8f7da8ce0b nixos/railcar: init 2019-09-04 22:46:42 +00:00
Katharina Fey 18f7f19ce2 ociTools: init 2019-09-04 22:46:42 +00:00
Lily Ballard 43dade238f
installShellFiles: init (#65211)
This is a new package that provides a shell hook to make it easy to
declare manpages and shell completions in a manner that doesn't require
remembering where to actually install them. Basic usage looks like

  { stdenv, installShellFiles, ... }:
  stdenv.mkDerivation {
    # ...
    nativeBuildInputs = [ installShellFiles ];
    postInstall = ''
      installManPage doc/foobar.1
      installShellCompletion --bash share/completions/foobar.bash
      installShellCompletion --fish share/completions/foobar.fish
      installShellCompletion --zsh share/completions/_foobar
    '';
    # ...
  }

See source comments for more details on the functions.
2019-09-04 23:19:17 +02:00
Eelco Dolstra 37e333af9a
nix: 2.2.2 -> 2.3 2019-09-04 21:36:49 +02:00
Marek Mahut 9392493ccc
Merge pull request #68081 from dtzWill/update/stress-ng-0.10.02
stress-ng: 0.10.01 -> 0.10.02
2019-09-04 21:28:04 +02:00
Marek Mahut 89f9948082
Merge pull request #68090 from markus1189/aws-rotate-key-1-0-6
aws-rotate-key: 1.0.4 -> 1.0.6
2019-09-04 21:27:23 +02:00
Marek Mahut 4622046a2f
Merge pull request #68104 from peterhoeg/f/aucdtect
aucdtect: pname was wrong
2019-09-04 21:23:42 +02:00
Sarah Brofeldt 2245bc0618
Merge pull request #68114 from srhb/manual-fix-ceph-rl
nixos/manual: Fix build after broken Ceph release note
2019-09-04 19:54:16 +02:00
Sarah Brofeldt ef76e7df16 nixos/manual: Fix build after broken Ceph release note 2019-09-04 19:33:07 +02:00
Silvan Mosberger 7ff619f440
Merge pull request #68015 from aanderse/zookeeper
nixos/zookeeper: recursively set permissions and ownership on dataDir
2019-09-04 19:00:49 +02:00
Michael Raskin 2b3a70715f
Merge pull request #68098 from Mic92/sysdig
sysdig: 0.26.2 -> 0.26.4
2019-09-04 16:19:13 +00:00
Timo Kaufmann 0a7f8fbd29
fflas-ffpack: 2.4.0 -> 2.4.3 (#68108) 2019-09-04 18:13:00 +02:00
Eelco Dolstra 68801b40d6
Merge pull request #62042 from thefloweringash/aarch64-ami
Amazon Images for Aarch64
2019-09-04 18:00:47 +02:00
Andrew Childs 84742e2293 amazon-image.nix: upload prebuilt images 2019-09-05 00:52:21 +09:00
Andrew Childs 25bee972e9 amazon-image.nix: add hydra-build-products and improve metadata 2019-09-05 00:52:20 +09:00
Andrew Childs 9898fd0e8e nixos/release.nix: add "amazonImage" for building Amazon EC2 Images 2019-09-05 00:52:20 +09:00
Andrew Childs 027e5560bd amazon-image.nix: default to vpc formatted images
These can be imported without converison.
2019-09-05 00:52:20 +09:00
Andrew Childs 5501274b5f amazon-image.nix: add EFI support, enable by default for aarch64 2019-09-05 00:52:17 +09:00
Johan Thomsen d891283aa4 nixos/kubernetes: make module compatible with v1.15.x 2019-09-04 17:38:41 +02:00
Johan Thomsen 10e416ce61 kubernetes: 1.14.3 -> 1.15.3 2019-09-04 17:38:41 +02:00
Johan Thomsen 00975b5628 Revert "Merge pull request #56789 from mayflower/upstream-k8s-refactor"
This reverts commit 7dc6e77bc2, reversing
changes made to bce47ea9d5.

Motivation for the revert in #67563
2019-09-04 17:37:02 +02:00
Michael Raskin e3fbbb1d10
Merge pull request #68083 from dtzWill/update/bdf2psf-1.193
bdf2psf: 1.192 -> 1.193
2019-09-04 15:20:44 +00:00
Sarah Brofeldt 55256d644b
Merge pull request #65470 from johanot/ceph-14-upstream
ceph: 12.2.7 -> 14.2.1
2019-09-04 17:08:28 +02:00
Johan Thomsen fb22d67fa7 ceph: 13.2.4 -> 14.2.1
* remove kinetic
* release note
* add johanot as maintainer

nixos/ceph: create option for mgr_module_path
  - since the upstream default is no longer correct in v14

* fix module, default location for libexec has changed
* ceph: fix test
2019-09-04 16:17:18 +02:00
Timo Kaufmann ce37819c8b
home-manager: 2019-06-25 -> 2019-09-04 (#68100) 2019-09-04 16:01:59 +02:00