Tim Steinbach
56f91dcb7b
linux: 4.9.73 -> 4.9.74
2018-01-02 19:31:14 -05:00
Tim Steinbach
1eb53a3830
linux: 4.4.108 -> 4.4.109
2018-01-02 19:30:58 -05:00
John Ericson
0e3be421e3
Merge pull request #33357 from bnikolic/mingw64-pthreads
...
Correct derivation of pthreads on mingw64
2018-01-02 19:10:59 -05:00
Will Dietz
b7ed446cd1
fac: 1.0.1
...
Fixes #33321 .
2018-01-02 18:05:20 -06:00
Bojan Nikolic
db475df127
mingw-w64-pthreads: The C compiler is needed
...
It was a copy and paste error from the headers derivation. Also test in
release-cross.
2018-01-02 19:01:18 -05:00
Michael Alan Dorman
8229306369
melpa-packages: 2018-01-02
2018-01-02 19:00:40 -05:00
Michael Alan Dorman
b3203b9302
melpa-stable-packages: 2018-01-02
2018-01-02 19:00:40 -05:00
Michael Alan Dorman
9cc47a6c23
org-packages: 2018-01-02
2018-01-02 19:00:40 -05:00
Michael Alan Dorman
c261b32aa2
elpa-packages: 2018-01-02
2018-01-02 19:00:40 -05:00
John Ericson
cb8349f59f
Merge branch 'pharo' into ericson2314-cross-base
2018-01-02 18:59:21 -05:00
John Ericson
2b4502c78e
Merge @LnL7's pharo-vm darwin eval fix from staging
...
Not a mass-rebuild
2018-01-02 18:54:35 -05:00
Test
6ea37497cd
loosen version bounds for lzma test dependencies
2018-01-02 17:43:40 -06:00
John Ericson
0bc1642fb8
Merge pull request #26883 from obsidiansystems/linux-make-bootstrap-tools
...
linux bootstrap tools: Use same derivation whether cross compiling or not
2018-01-02 18:31:37 -05:00
Casey Ransom
f3cba4f6bb
netdata service: fix permissions for apps.plugin
...
apps.plugin requires capabilities for full process monitoring. with
1.9.0, netdata allows multiple directories to search for plugins and the
setuid directory can be specified here.
the module is backwards compatible with older configs. a test is
included that verifies data gathering for the elevated privileges. one
additional attribute is added to make configuration more generic than
including configuration in string form.
2018-01-02 17:57:19 -05:00
adisbladis
74ac6b5fe6
Merge pull request #33351 from jluttine/update-rssguard-3.5.5
...
rssguard: 3.4.2 -> 3.5.5
2018-01-02 23:52:05 +01:00
José Romildo Malaquias
b33b4a76de
xkbmon: init at 0.1
2018-01-02 23:42:02 +01:00
adisbladis
8aafa83838
plasma: 5.11.4 -> 5.11.5
2018-01-02 23:35:51 +01:00
José Romildo Malaquias
63c850768f
deepin-gtk-theme: 17.10.4 -> 17.10.5
2018-01-02 19:59:28 -02:00
Will Dietz
d8141bc059
irker: cleanup manual setting of XML_CATALOG_FILES, no longer needed
2018-01-02 22:40:39 +01:00
Jörg Thalheim
cb92075daf
Merge pull request #33339 from romildo/upd.pnmixer
...
pnmixer: 0.7.1 -> 0.7.2
2018-01-02 21:40:21 +01:00
Will Dietz
566ded39b1
pandoc: fix build by using buildDepends to match cabal file
...
The previously used dependency hsb2hs was a build-tools dependency,
but file-embed is build-depends:
ff991d1e21
Fixes #33349
2018-01-02 14:37:47 -06:00
Jaakko Luttinen
b68156006a
rssguard: 3.4.2 -> 3.5.5
2018-01-02 22:16:22 +02:00
Drew Hess
9361b7eb85
ghc: bootstrap 8.2.2 with 8.2.1-binary.
2018-01-02 12:15:16 -08:00
Justin Humm
792b085b1a
osrm-backend: 5.14.1 -> 5.14.3
2018-01-02 20:54:45 +01:00
Ryan Trinkle
f1a6fa6eec
Merge pull request #32258 from ryantrinkle/add-nat-extraCommands
...
nat: add extraCommands option
2018-01-02 14:32:42 -05:00
Ryan Trinkle
36fbcfd811
thunderbolt: init at 0.9.2
2018-01-02 14:28:56 -05:00
Ryan Trinkle
70cf769082
maintainers: add ryantrinkle
2018-01-02 14:27:20 -05:00
Merlin Göttlinger
60e76dfff8
icesl: init at 2.1.10
2018-01-02 13:19:47 -06:00
Maximilian Bosch
e538e00404
test-driver: support testing user units
...
It is quite complicated to test services using the test-driver when
declaring user services with `systemd.user.services` such as many
X11-based services like `xautolock.service`.
This change adds an optional `$user` parameter to each systemd-related
function in the test-driver and runs `systemctl --user` commands using
`su -l $user -c ...` and sets the `XDG_RUNTIME_DIR` variable
accordingly and a new function named `systemctl` which is able to run a
systemd command with or without a specified user.
The change can be confirmed with a simple VM declaration like this:
```
import ./nixos/tests/make-test.nix ({ pkgs, lib }:
with lib;
{
name = "systemd-user-test";
nodes.machine = {
imports = [ ./nixos/tests/common/user-account.nix ];
services.xserver.enable = true;
services.xserver.displayManager.auto.enable = true;
services.xserver.displayManager.auto.user = "bob";
services.xserver.xautolock.enable = true;
};
testScript = ''
$machine->start;
$machine->waitForX;
$machine->waitForUnit("xautolock.service", "bob");
$machine->stopJob("xautolock.service", "bob");
$machine->startJob("xautolock.service", "bob");
$machine->systemctl("list-jobs --no-pager", "bob");
$machine->systemctl("show 'xautolock.service' --no-pager", "bob");
'';
})
```
2018-01-02 20:14:27 +01:00
Daiderd Jordan
b0c043d26c
stdenv: allow lib output of clang on darwin
2018-01-02 20:00:31 +01:00
John Ericson
ab651d2c9b
linux bootstrap tools: Use same derivation whether cross compiling or not
2018-01-02 13:52:41 -05:00
Will Dietz
9d2c5010fb
xterm: Fix license from BSD to 'mit', don't use string
...
Inspecting source suggests it's MIT-X11;
don't see mention of BSD licensing.
https://repology.org/metapackage/xterm/information
shows we're currently only one marking it as BSD.
2018-01-02 12:31:34 -06:00
Will Dietz
73824f1e65
xterm: 330 -> 331
...
https://invisible-island.net/xterm/xterm.log.html#xterm_331
2018-01-02 12:31:34 -06:00
Will Dietz
bf8be80ce3
dialog: 1.3-20160209 -> 1.3-20171209
2018-01-02 12:31:33 -06:00
Will Dietz
e3f83c3f4b
cdk: 5.0-20161210 -> 5.0-20171209
...
http://invisible-island.net/cdk/CHANGES.html#t20171209
2018-01-02 12:31:33 -06:00
Will Dietz
94f06c8868
byacc: 20170201 -> 20170709
...
http://invisible-island.net/byacc/CHANGES.html#t20170709
2018-01-02 12:31:33 -06:00
Will Dietz
19f1fd14b3
invisible-island programs: Fix FTP URL's, use HTTPS, prefer ftp
...
FTP URL's should use ftp.invisible-island.net.
2018-01-02 12:31:33 -06:00
José Romildo Malaquias
e80b27f383
pnmixer: 0.7.1 -> 0.7.2
2018-01-02 16:29:16 -02:00
Daiderd Jordan
1531fd7351
pharo: disable on darwin
2018-01-02 19:19:37 +01:00
Frederik Rietdijk
58f9fd64ef
Merge pull request #33338 from matthiasbeyer/update-toot
...
toot: 0.15.0 -> 0.16.2
2018-01-02 19:19:16 +01:00
Frederik Rietdijk
804285f589
Merge remote-tracking branch 'upstream/staging' into HEAD
2018-01-02 19:10:45 +01:00
Matthias Beyer
b222e44f0a
toot: 0.15.0 -> 0.16.2
2018-01-02 19:06:21 +01:00
Yegor Timoshenko
63c1a54257
Merge pull request #33213 from wchresta/master
...
steam: add wrapper testing for libGL
2018-01-02 21:03:28 +03:00
Uli Schlachter
5465d6f7de
awesome: Use --search instead of $LUA_PATH/$LUA_CPATH
...
Instead of polluting the environment with environment variables which
are inherited by processes spawned from awesome, use the command line
argument "--search" to add things to the search path.
cc #33169
2018-01-02 17:24:56 +00:00
Will Dietz
fa777a4de7
lxterminal: use nativeBuildInputs for compile-time-only deps
2018-01-02 11:05:58 -06:00
Peter Simons
c98eb9e9b9
Merge pull request #33333 from shlevy/haskell-internal-libs-darwin
...
haskell: Fix depending on libs with internal libs on darwin.
2018-01-02 17:41:39 +01:00
Shea Levy
34a91b7922
haskell: Fix depending on libs with internal libs on darwin.
...
Thanks to @hamishmack for the pointer.
Fixes #33149 .
2018-01-02 11:37:54 -05:00
Jörg Thalheim
bc5bf95858
Merge pull request #33279 from lopsided98/go-stdenv-shell
...
go-1.8, go-1.9: use stdenv.shell instead of /usr/bin/env bash
2018-01-02 16:21:41 +01:00
Jörg Thalheim
e9d5c55d01
Merge pull request #33260 from lopsided98/jemalloc-thp
...
jemalloc: disable transparent hugepages by default on ARMv6/7
2018-01-02 16:18:26 +01:00
John Ericson
1ecebbd939
Merge pull request #33240 from velovix/master
...
lxterminal: init at 0.3.1
2018-01-02 10:05:28 -05:00