Commit Graph

184126 Commits

Author SHA1 Message Date
Matthew Bauer
e49729f9b1
Merge pull request #63707 from matthewbauer/fix-63043
Qt5 + Darwin fixes
2019-06-23 20:37:54 -04:00
Matthew Bauer
8768d1c83a nixos: add hardware/network/intel-2200bg.nix to module-list
this is referenced by nixos-generate-config.pl. See
https://github.com/NixOS/nixpkgs/pull/63091 for more discussion.
2019-06-23 20:30:27 -04:00
Maximilian Bosch
b1fc54d059
Merge pull request #63685 from Ma27/bump-documize
documize-community: 2.5.1 -> 3.0.0
2019-06-24 01:43:03 +02:00
zimbatm
20b993ef2c
ksonnet: remove package (#63702)
The team behind ksonnet was aquired by VMware, and they decided to end
work on ksonnet:

From https://blogs.vmware.com/cloudnative/2019/02/05/welcoming-heptio-open-source-projects-to-vmware:

> Prior to the acquisition, Heptio had been shifting focus and resources
> away from ksonnet; with the acquisition, we felt it was the right time
> to rethink our investment in ksonnet. As a result, work on ksonnet will
> end and the GitHub repositories will be archived. It’s extremely
> difficult to step back from a project we have worked so hard on, but
> we’re excited about our new ideas and vision for changing how developers
> experience the Kubernetes and cloud native ecosystems.
2019-06-23 22:43:23 +00:00
zimbatm
7f7687e79f
Merge pull request #63701 from basvandijk/composable-mkshell-shellHook
Improve composability of mkShell
2019-06-23 22:39:54 +00:00
Matthew Bauer
758712c6f4 qt5: make qt512 the default on darwin 2019-06-23 18:31:20 -04:00
Matthew Bauer
4c3e09b022 qt5.12: patch to work on x86_64-darwin
unfortunately, some private headers making the logging hard to handle.
Specifically, os/activity.h that is included does not match what Qt5
is expected. This removes the activity logging (while keeping the
other logging methods) on macOS.

Fixes #63528
2019-06-23 18:29:04 -04:00
Matthew Bauer
4e22fe4f63 apple-sdk: add MetalKit 2019-06-23 18:28:36 -04:00
Félix Baylac-Jacqué
5121f8d1e6
hostapd: starting hostapd systemd service at boot. 2019-06-24 00:26:27 +02:00
Félix Baylac-Jacqué
98deb87354
hostapd: Add noscan mode.
Applies OpenWRT's noscan patch to hostapd and the relevant option to
the hostapd module.

This noscan patch adds a new `noscan` option allowing us to create
some overlapping BSSs in HT40+/- mode.

Note: this option is disabled by default, we leave this up to the end
user whether it should be enabled or not.

Not being able to create those overlapping BSSs is basically
preventing us to use 802.11n in any urban area where chances to
overlap with another SSID are extremely high.

The patch we are using is a courtesy of the openwrt team and is
applied to the defaul hostapd package in both OpenWRT and Archlinux.
2019-06-24 00:26:20 +02:00
Bas van Dijk
7720379005 cargo-license: init at 0.2.0 2019-06-24 00:20:57 +02:00
John Ericson
852d81d607
Merge pull request #63698 from tobim/overrideCC-buildPackages
Fix misuses of overrideCC
2019-06-23 18:19:18 -04:00
arcnmx
2933681be0 pythonPackages.hidapi: enable on darwin 2019-06-23 14:55:26 -07:00
Ryan Mulligan
73d5c7e547
Merge pull request #63350 from r-ryantm/auto-update/python3.7-cassandra-driver
python37Packages.cassandra-driver: 3.17.1 -> 3.18.0
2019-06-23 14:07:40 -07:00
Florian Klink
9635646148 ksonnet: remove package
The team behind ksonnet was aquired by VMware, and they decided to end
work on ksonnet:

From https://blogs.vmware.com/cloudnative/2019/02/05/welcoming-heptio-open-source-projects-to-vmware:

> Prior to the acquisition, Heptio had been shifting focus and resources
> away from ksonnet; with the acquisition, we felt it was the right time
> to rethink our investment in ksonnet. As a result, work on ksonnet will
> end and the GitHub repositories will be archived. It’s extremely
> difficult to step back from a project we have worked so hard on, but
> we’re excited about our new ideas and vision for changing how developers
> experience the Kubernetes and cloud native ecosystems.
2019-06-23 22:42:08 +02:00
Bas van Dijk
cee35739ff mkshell: improve mergeInputs
mergeInputs is now simply defined in terms of `concatLists` and
`catAttrs` instead of a more complicated `foldr`.

Note that the order of PATH has also changed. For example running the
following with nix-shell:

  let
    pkgs = import <nixpkgs> {};

    shell1 = pkgs.mkShell {
      buildInputs = [ pkgs.htop ];
    };

    shell2 = pkgs.mkShell {
      buildInputs = [ pkgs.hello ];
    };

    shell3 = pkgs.mkShell {
      inputsFrom = [ shell1 shell2 ];
      buildInputs = [ pkgs.tree ];
    };

  in shell3

Results in the following PATH:

$ echo $PATH
...
/nix/store/yifq4bikf7m07160bpia7z48ciqddbfi-tree-1.8.0/bin:
/nix/store/vhxqk81234ivqw1a7j200a1c69k8mywi-htop-2.2.0/bin:
/nix/store/n9vm3m58y1n3rg3mlll17wanc9hln58k-hello-2.10/bin
...

Previously the order was:

/nix/store/n9vm3m58y1n3rg3mlll17wanc9hln58k-hello-2.10/bin
/nix/store/vhxqk81234ivqw1a7j200a1c69k8mywi-htop-2.2.0/bin:
/nix/store/yifq4bikf7m07160bpia7z48ciqddbfi-tree-1.8.0/bin:

I think the new order makes more sense because it allows to override
the PATH in the outermost mkShell.
2019-06-23 22:20:10 +02:00
Bas van Dijk
76ef802d3d mkShell: compose shellHooks
Running the following expression with nix-shell:

  let
    pkgs = import <nixpkgs> {};

    shell1 = pkgs.mkShell {
      shellHook = ''
        echo shell1
      '';
    };

    shell2 = pkgs.mkShell {
      shellHook = ''
        echo shell2
      '';
    };

    shell3 = pkgs.mkShell {
      inputsFrom = [ shell1 shell2 ];
      shellHook = ''
        echo shell3
      '';
    };
  in shell3

Will now results in:
shell2
shell1
shell3

Note that packages in the front of inputsFrom have precedence over
packages in the back. The outermost mkShell has precedence over all.
2019-06-23 22:13:57 +02:00
Tadeo Kondrak
1655945eb7 discord-canary: 0.0.83 -> 0.0.84 2019-06-23 11:50:09 -07:00
Tadeo Kondrak
e6f23b8b1e discord-{ptb,canary}: init; add update-discord 2019-06-23 11:50:09 -07:00
Tadeo Kondrak
0687a9d8db discord: change from 4 to 2 space indentation 2019-06-23 11:50:09 -07:00
Tobias Mayer
6389a0a132 Use of gccXStdenv instead of inplace overrideCC 2019-06-23 20:49:22 +02:00
Mario Rodas
6b311bef63
Merge pull request #63642 from marsam/update-imgcat
imgcat: 2.3.0 -> 2.3.1
2019-06-23 12:13:00 -05:00
Mario Rodas
0be4e0cca7
lazygit: 0.7.2 -> 0.8 2019-06-23 12:09:11 -05:00
makefu
aa54135d2c home-assistant: update component-packages
adds gtts-token to google_translate component
2019-06-23 18:19:11 +02:00
makefu
536abf3c64 python.pkgs.gtts-token: init at 1.1.3 2019-06-23 18:19:11 +02:00
Jonathan Ringer
d27c1f64f4 pythonPackages.imgaug: mark as broken 2019-06-23 18:14:19 +02:00
Jonathan Ringer
9559da73a2 pythonPackages.ndg-httpsclient: 0.4.2 -> 0.5.1 2019-06-23 18:13:46 +02:00
R. RyanTM
9bf6694abf python37Packages.progressbar2: 3.39.3 -> 3.42.0
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.7-progressbar2/versions
2019-06-23 18:12:59 +02:00
R. RyanTM
70cf345947 python37Packages.aniso8601: 6.0.0 -> 7.0.0
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.7-aniso8601/versions
2019-06-23 18:12:39 +02:00
R. RyanTM
53a374d98d python37Packages.sasmodels: 0.99 -> 1.0.0
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.7-sasmodels/versions
2019-06-23 18:12:12 +02:00
Tobias Mayer
3a7bb25285 Fix overrideCC invokations for cross builds
`overrideCC` should always take a compiler for the build
system, otherwise cross compilation is not possible.
2019-06-23 17:07:51 +02:00
Tobias Mayer
79d72ccd3c dpkg: fix cross compilation 2019-06-23 17:07:38 +02:00
Michal Minář
5864dfb513 megasync: init at 4.1.1.0
Signed-off-by: Michal Minář <mic.liamg@gmail.com>
2019-06-23 16:27:39 +02:00
Jörg Thalheim
80172aa0a6
Merge pull request #63687 from flokli/neomutt-remove-wrapper
neomutt: remove mutt wrapper
2019-06-23 14:58:17 +01:00
Jörg Thalheim
831e4a261b
Merge pull request #63657 from saschagrunert/conmon
conmon: 0.2.0 -> 0.3.0
2019-06-23 14:57:30 +01:00
Frederik Rietdijk
dafee3d91a Merge master into staging-next 2019-06-23 15:38:41 +02:00
Frederik Rietdijk
ba7e7aed08 python.pkgs.soundfile: 0.9.0.post1 -> 0.10.2
Package was renamed as well.
2019-06-23 15:32:19 +02:00
R. RyanTM
34240dbb28 flexget: 2.21.2 -> 2.21.8
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/flexget/versions
2019-06-23 15:02:41 +02:00
R. RyanTM
5c43e4170e opera: 60.0.3255.109 -> 60.0.3255.170
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/opera/versions
2019-06-23 15:02:22 +02:00
R. RyanTM
74fd5305f1 openapi-generator-cli: 4.0.0 -> 4.0.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/openapi-generator-cli/versions
2019-06-23 15:01:58 +02:00
R. RyanTM
fcd6a40700 jalv: 1.6.0 -> 1.6.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/jalv/versions
2019-06-23 15:01:45 +02:00
R. RyanTM
20b66bcd17 xmrig-proxy: 2.14.1 -> 2.14.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/xmrig-proxy/versions
2019-06-23 15:01:02 +02:00
R. RyanTM
32b39a4696 visualvm: 1.4.2 -> 1.4.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/visualvm/versions
2019-06-23 15:00:26 +02:00
R. RyanTM
f1dbd6f416 hpx: 1.2.1 -> 1.3.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/hpx/versions
2019-06-23 14:59:25 +02:00
R. RyanTM
b51c87b9df duo-unix: 1.11.1 -> 1.11.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/duo-unix/versions
2019-06-23 14:58:06 +02:00
R. RyanTM
66715188e5 aws-c-common: 0.3.9 -> 0.3.11
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/aws-c-common/versions
2019-06-23 14:57:49 +02:00
R. RyanTM
7d8c6c978b enyo-doom: 1.06 -> 1.06.9
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/enyo-doom/versions
2019-06-23 14:57:16 +02:00
R. RyanTM
3e6ef3e9ef eagle: 9.3.2 -> 9.4.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/eagle/versions
2019-06-23 14:57:04 +02:00
R. RyanTM
eaea49b8ed calamares: 3.2.7 -> 3.2.8
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/calamares/versions
2019-06-23 14:56:13 +02:00
R. RyanTM
1bb5f197a5 lasem: 0.4.3 -> 0.4.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/lasem/versions
2019-06-23 14:55:55 +02:00