Commit Graph

4667 Commits

Author SHA1 Message Date
Mathieu Boespflug
361e9185c8 linkchecker: fix bad interaction with python3
Previously, `nix-shell -p linkchecker python3` would lead to a broken
`python3` command. That's because Python 2 packages would pollute the
environment and confuse the interpreter. `linkchecker` has propagated
build inputs. So the solution is to use `pythonPath` instead, to avoid
the pollution.
2019-05-06 13:32:41 +02:00
Pascal Wittmann
ad1e17f5ba
Merge pull request #61000 from r-ryantm/auto-update/nzbget
nzbget: 20.0 -> 21.0
2019-05-05 21:21:39 +02:00
R. RyanTM
661d9e59cd nzbget: 20.0 -> 21.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/nzbget/versions
2019-05-05 10:25:57 -07:00
Alyssa Ross
0aced8f1b7
Merge pull request #60504 from manveru/hue-cli-update
hue-cli: use bundlerApp
2019-05-05 13:49:24 +00:00
Michael Fellinger
20a19eb202 hue-cli: use bundlerApp 2019-05-04 15:21:48 +02:00
Joachim F
5ad1e9f0bf
Merge pull request #60575 from dtzWill/feature/obfs4proxy
obfs4: init at 0.0.10, use in tor-browser-bundle's, tor service
2019-05-03 09:48:02 +00:00
R. RyanTM
560b7b4250 opensm: 3.3.21 -> 3.3.22
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/opensm/versions
2019-05-01 10:25:56 -07:00
R. RyanTM
1e7d8a0ba6 haproxy: 1.9.6 -> 1.9.7
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/haproxy/versions
2019-05-01 11:13:58 +02:00
Will Dietz
b775493d23 obfs4: init at 0.0.10 2019-04-30 22:25:02 -05:00
Frederik Rietdijk
fd2bd6e433
Merge staging-next into master 2019-04-30 15:50:24 +02:00
Bas van Dijk
80df0495bb strongswan: remove the now unnecessary dependency on libpcap
Since #51787 has been merged we can remove this ad-hoc fix.
2019-04-30 10:28:31 +02:00
Bas van Dijk
d771036ab2 strongswan: use placeholder instead of configureFlagsArray 2019-04-30 10:27:49 +02:00
Michael Raskin
5d09420337
Merge pull request #60459 from r-ryantm/auto-update/atftp
atftp: 0.7.1 -> 0.7.2
2019-04-30 07:56:28 +00:00
R. RyanTM
1e3e8b8ee0 atftp: 0.7.1 -> 0.7.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/atftp/versions
2019-04-29 22:26:41 -07:00
Frederik Rietdijk
2f936f85d8 Merge master into staging-next 2019-04-29 13:46:20 +02:00
Peter Hoeg
8f81838ab5
Merge pull request #58800 from peterhoeg/f/openvpn
openvpn: support for updating systemd-resolved with DNS servers
2019-04-28 21:54:26 +08:00
Lassulus
75d150f9da
Merge pull request #59872 from Izorkin/datadog
Datadog: update packages
2019-04-27 19:27:32 +09:00
Jörg Thalheim
2a72ad4462
wol: fix manpage generation (#60310)
wol: fix manpage generation
2019-04-27 11:23:00 +01:00
Peter Hoeg
8086169413 wol: fix manpage generation 2019-04-27 17:22:13 +08:00
Bruno Bigras
4d8b9cbbdd httplz: init at 1.5.0 (#60304) 2019-04-27 09:34:33 +02:00
Will Dietz
ee5f4636b0 dhcpcd: 7.2.0 -> 7.2.1
Includes security fixes!

https://roy.marples.name/blog/dhcpcd-7-2-1-released
2019-04-27 07:35:23 +02:00
Andrew Childs
14e505c6fa socat: fix darwin build 2019-04-26 23:56:33 +09:00
Matthew Bauer
84d00355e8 Merge remote-tracking branch 'NixOS/master' into staging 2019-04-23 22:00:42 -04:00
Franz Pletz
dc552fd2ff
Merge pull request #59807 from dtzWill/update/dhcpcd-7.2.0
dhcpcd: 7.1.1 -> 7.2.0
2019-04-23 23:18:44 +00:00
Jan Tojnar
60b382822f
networkmanager: port to Meson (#59916)
networkmanager: port to Meson
2019-04-23 02:41:26 +02:00
Jan Tojnar
a961a289a9
networkmanager: port to Meson
All hail Meson!

One serious issue is that building docs does not work.

We patch gobject-introspection to use absolute paths for shared libraries
in GIR files. Building the NetworkManager docs relies on the produced
introspection data but since the library is not yet installed
at the time the docs are generated, the build will fail.

It works in Autotools for some reason; they probably use
the pregenerated GIRs from the tarball.

Disabling the docs completely is not possible at the moment either,
since nmc [depends on them][1].

I have decided to fix this by pointing the installed location to the one
in the build directory using libredirect. Unfortunately, we cannot just set
the environment variables directly, since the build system runs
the documentation generator in a clean environment.

I have also added man, doc and devdoc outputs so the generated files have
somewhere to go.

Secondly, since Nix store is immutable, we also cannot use the package prefix
for configuration and mutable state data. At the same time, we cannot write
to the appropriate global directories during build. Autotools allowed to change
this in installFlags but Meson lacks similar mechanism so we need to patch
the build files.

Finally, I also removed the at_console patch since the permission has been
removed in 0.9.10.

[1]: https://bugzilla.gnome.org/show_bug.cgi?id=796755
2019-04-22 12:10:10 +02:00
Daniel Schaefer
bac4d95aa2 treewide: Change URLs to HTTPS
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them
if there's actual content. Inspired by
https://github.com/NixOS/nixpkgs/issues/60004
2019-04-22 10:19:54 +02:00
Will Dietz
54084dd821 shadowfox: 1.5.2 -> 1.7.20, move to buildGoModule (#59972) 2019-04-21 21:06:31 -07:00
Renaud
77916109ed
Merge pull request #59532 from r-ryantm/auto-update/haproxy
haproxy: 1.9.3 -> 1.9.6
2019-04-21 02:02:24 +02:00
Renaud
30aeb6c320
Merge pull request #59617 from r-ryantm/auto-update/openfortivpn
openfortivpn: 1.8.1 -> 1.9.0
2019-04-21 00:49:54 +02:00
Izorkin
eb299c0168 datadog-process-agent: 6.10.0 -> 6.11.0 2019-04-19 10:21:58 +03:00
Izorkin
f32ddcff25 datadog-agent: 6.10.1 -> 6.11.0 2019-04-19 10:09:54 +03:00
worldofpeace
cc97412a26
Merge pull request #59339 from worldofpeace/elementary-updates-etcs
pantheon updates, etc.
2019-04-18 12:01:18 -04:00
worldofpeace
cb3579d8c4 networkmanagerapplet: hardcode for eap gschema
This is needed for the networking plug in pantheon.switchboard
and the related indicator in pantheon.wingpanel
2019-04-18 11:28:18 -04:00
Frederik Rietdijk
256e34b89d
Merge staging-next into master (#59733) 2019-04-18 14:03:51 +02:00
Will Dietz
cd5343a7fc xl2tpd: 1.3.13 -> 1.3.14
https://github.com/xelerance/xl2tpd/releases/tag/v1.3.14
2019-04-18 08:39:59 +02:00
Frederik Rietdijk
9d87ccabce Merge master into staging-next 2019-04-18 08:25:25 +02:00
Will Dietz
a7ac961366 dhcpcd: 7.1.1 -> 7.2.0
https://roy.marples.name/blog/dhcpcd-7-2-0-released
2019-04-17 21:39:44 -05:00
Jan Tojnar
6ae33c9afe
Merge pull request #57736 from jtojnar/gupnp-1.2
gupnp: 1.0.3 → 1.2.0
2019-04-17 11:04:56 +02:00
Jörg Thalheim
045f98ea0c
Merge pull request #59728 from r-ryantm/auto-update/wireguard-tools
wireguard-tools: 0.0.20190227 -> 0.0.20190406
2019-04-17 08:27:39 +01:00
Michael Eden
19094e72bf inetutils: cross compile 2019-04-16 19:04:40 +02:00
Frederik Rietdijk
2b52da5f99
Merge pull request #58222 from bobvanderlinden/var-run-pkgs
tree-wide: pkgs: /var/run -> /run
2019-04-16 19:02:56 +02:00
Michael Eden
d888baa517 dhcp: cross compile 2019-04-16 19:00:52 +02:00
R. RyanTM
2db96ffe49 unbound: 1.9.0 -> 1.9.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/unbound/versions
2019-04-16 18:56:09 +02:00
Frederik Rietdijk
bae32a9f5c Merge staging-next into staging 2019-04-16 18:54:15 +02:00
R. RyanTM
08a62e0578 wireguard-tools: 0.0.20190227 -> 0.0.20190406
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/wireguard-tools/versions
2019-04-16 09:38:26 -07:00
R. RyanTM
6c3e0907a5 socat: 1.7.3.2 -> 1.7.3.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/socat/versions
2019-04-16 18:31:39 +02:00
R. RyanTM
f7997e326b stunnel: 5.50 -> 5.53
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/stunnel/versions
2019-04-16 18:30:34 +02:00
R. RyanTM
617fda8d4d stubby: 0.2.5 -> 0.2.6
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/stubby/versions
2019-04-16 18:30:00 +02:00
R. RyanTM
c5168ab16d tgt: 1.0.75 -> 1.0.76
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tgt/versions
2019-04-16 18:29:23 +02:00