Peter Simons
c8a8146fb4
gnucash-2.4.15: disable test suite
...
The test suite was broken by the GLib 2.46.0 update. If anyone finds a
patch that remedies these issues for 2.4.x, please check it in!
Otherwise, we'll eventually update our default version to 2.6.x, I
suppose.
Closes https://github.com/NixOS/nixpkgs/issues/11084 .
2015-11-18 15:25:52 +01:00
Peter Simons
d7e6a46770
r-modules: update list of broken builds to avoid Hydra errors
2015-11-18 15:23:46 +01:00
Vladimír Čunát
a5c168db4e
gnome-screenshot: unbreak build by 3.16.0 -> 3.16.2
...
/cc @lethalman.
Includes a revert of 1f27976e03
.
2015-11-18 14:05:18 +01:00
Pascal Wittmann
dd81844322
Merge pull request #11120 from vizanto/pr-boot
...
boot: 2.2.0 -> 2.4.2
2015-11-18 13:39:24 +01:00
Pascal Wittmann
d1d5f9c9c1
Merge pull request #11121 from manveru/google-fonts
...
google-fonts: new package
2015-11-18 12:36:20 +01:00
Ollie Charles
013b848346
devmon: Non-root user, set PATH, require udisks2
...
devmon refuses to run as root. Instead, we now run it as a user service,
and enable udisks2 in order to perform the mounts.
2015-11-18 11:30:08 +00:00
Michael Fellinger
08c6a2cd92
google-fonts: init at 2015-11-18
2015-11-18 12:19:37 +01:00
Danny Wilson
1ebc5bfa21
boot: 2.2.0 -> 2.4.2
2015-11-18 11:48:04 +01:00
Luca Bruno
1f27976e03
gnome3_16: mark gnome-screenshot as broken
2015-11-18 11:47:30 +01:00
William A. Kennington III
f9f3b47c72
xkbcomp: 1.3.0 -> 1.3.1
2015-11-18 02:36:18 -08:00
William A. Kennington III
4da7935a8e
xinput: 1.6.1 -> 1.6.2
2015-11-18 02:36:18 -08:00
Pascal Wittmann
c283a3da68
Replace 'with plaforms; platform' with 'platforms.platform'
2015-11-18 11:34:09 +01:00
Pascal Wittmann
33a8e07d64
Merge pull request #11070 from plcplc/tortoisehg
...
Bumped tortoisehg to version 3.6
2015-11-18 10:13:25 +01:00
Herwig Hochleitner
f95388d706
dropbox: 3.10.9 -> 3.10.11
2015-11-18 09:46:20 +01:00
Herwig Hochleitner
ec73ef4c2f
wine: 1.7.53 -> 1.7.55
2015-11-18 09:33:57 +01:00
vbgl
58d0a1ca40
Merge pull request #11112 from frlan/Update/Geany/1.26
...
geany: 1.25 -> 1.26
2015-11-18 09:23:05 +01:00
Domen Kožar
648265e020
Merge pull request #11111 from davidrusu/master
...
update net-tools home page
2015-11-18 08:31:02 +01:00
David Rusu
c46ffb05ff
update net-tools home page
...
Previous domain had expired
2015-11-18 00:35:28 -05:00
William A. Kennington III
ee153a619a
xorg: Fix hashes
2015-11-17 21:25:15 -08:00
William A. Kennington III
933316c310
tinc_pre: 2015-09-25 -> 2015-11-07
2015-11-17 21:16:42 -08:00
William A. Kennington III
349e50734e
grub2: 2015-10-13 -> 2015-11-16
2015-11-17 21:16:01 -08:00
William A. Kennington III
2e595e32f6
xf86-video-ati: 7.5.0 -> 7.6.1
2015-11-17 21:15:30 -08:00
William A. Kennington III
2792b9228c
xf86-input-synaptics: 1.8.2 -> 1.8.3
2015-11-17 21:15:04 -08:00
William A. Kennington III
7a2283b08e
xf86-input-libinput: 0.14.0 -> 0.15.0
2015-11-17 21:14:46 -08:00
William A. Kennington III
5b3bbd1ac1
xf86-input-evdev: 2.9.2 -> 2.10.0
2015-11-17 21:14:18 -08:00
William A. Kennington III
8d01a4a4e4
nvidia: 352.55 -> 352.63
2015-11-17 21:13:41 -08:00
William A. Kennington III
357e471d56
rocksdb: 4.0 -> 4.1
2015-11-17 21:12:49 -08:00
William A. Kennington III
4506f29168
znc: 1.6.1 -> 1.6.2
2015-11-17 21:12:35 -08:00
Ricardo M. Correia
2b694c237b
cargo, cargoSnapshot: add rustc runtime dependency
...
It turns out that cargo implicitly depends on rustc at runtime: even
`cargo help` will fail if rustc is not in the PATH.
This means that we need to wrap the cargo binary to add rustc to PATH.
However, I have opted into doing something slightly unusual: instead of
tying down a specific cargo to use a specific rustc (i.e., wrap cargo so
that "${rustc}/bin" is prefixed into PATH), instead I'm adding the rustc
used to build cargo as a fallback rust compiler (i.e., wrap cargo so
that "${rustc}/bin" is suffixed into PATH). This means that cargo will
prefer to use a rust compiler that is in the default path, but fallback
into the one used to build cargo only if there wasn't any rust compiler
in the default path.
The reason I'm doing this is that otherwise it could cause unexpected
effects. For example, if you had a build environment with the
rustcMaster and cargo derivations, you would expect cargo to use
rustcMaster to compile your project (since rustcMaster would be the only
compiler available in $PATH), but this wouldn't happen if we tied down
cargo to use the rustc that was used to compile it (because the default
cargo derivation gets compiled with the stable rust compiler).
That said, I have slightly modified makeRustPlatform so that a rust
platform will always use the rust compiler that was used to build cargo,
because this prevents mistakenly depending on two different versions of
the rust compiler (stable and unstable) in the same rust platform,
something which is usually undesirable.
Fixes #11053
2015-11-18 02:41:45 +01:00
William A. Kennington III
893179e9c1
linux-testing: Bump to 4.4-rc1
2015-11-17 17:21:25 -08:00
William A. Kennington III
cf1ca41bfa
ceph: Fix hash
2015-11-17 17:10:51 -08:00
Tobias Geerinckx-Rice
a5bad31da3
Merge pull request #11105 from nckx/add-gpart
...
gpart: init at 0.2.2
2015-11-17 23:38:03 +01:00
Tobias Geerinckx-Rice
7392ae1a3a
gpart: init at 0.2.2
2015-11-17 23:09:04 +01:00
Domen Kožar
a7e8addf98
Merge pull request #11103 from samuelrivas/add-mixpanel
...
mixpanel: init at 4.0.2
2015-11-17 22:30:33 +01:00
Samuel Rivas
f1f7a438d1
mixpanel: init at 4.0.2
2015-11-17 22:19:54 +01:00
Philip Lykke Carlsen
d69e1956d7
tortoisehg: 3.4.2 -> 3.6
...
It builds and runs. Tested very superficially with an empty repository.
2015-11-17 22:09:38 +01:00
Frank Lanitz
5f6ce43418
geany: 1.25 -> 1.26
2015-11-17 22:02:43 +01:00
Pascal Wittmann
7fd2796e99
Replace 'with plaforms; platform' with 'platforms.platform'
2015-11-17 21:30:43 +01:00
goibhniu
8ca605fccb
Merge pull request #11099 from magnetophon/helm-master
...
add Helm, a polyphonic synthesizer, standalone or lv2
2015-11-17 19:31:03 +01:00
Tobias Geerinckx-Rice
8d33c88c4f
geolite-legacy 2015-11-04 -> 2015-11-17
2015-11-17 19:15:11 +01:00
Luca Bruno
43ee914535
cheese: fix build for 3.18
2015-11-17 18:48:25 +01:00
Luca Bruno
bdd1df16a7
gitg: fix 3.18 build
2015-11-17 18:41:08 +01:00
Luca Bruno
fd01f8d1a7
libgit2-glib: 0.0.24 -> 0.23.6
2015-11-17 18:41:08 +01:00
Arseniy Seroka
57ee05af86
Merge pull request #11095 from DamienCassou/isync-1.2.1
...
isync: 1.2.0 → 1.2.1
2015-11-17 20:29:55 +03:00
Bart Brouns
ac3608211e
add Helm, a polyphonic synthesizer, standalone or lv2
2015-11-17 18:24:39 +01:00
Luca Bruno
db4e688df2
git2: fix libssh support
2015-11-17 17:55:20 +01:00
Jaka Hudoklin
43e8590321
Merge pull request #11089 from steveeJ/rkt-v0.11
...
rkt: v0.10.0 -> 0.11.0
2015-11-17 17:32:41 +01:00
Jaka Hudoklin
5bbb869297
Merge pull request #11090 from matejc/brackets
...
brackets: new package, code editor
2015-11-17 17:24:40 +01:00
Jaka Hudoklin
b04ba13ee0
Merge pull request #11050 from offlinehacker/pkgs/dd-agent/update_5.5.2
...
dd-agent: 5.4.3 -> 5.5.2, add docker support
2015-11-17 17:19:00 +01:00
Jaka Hudoklin
be067811ff
Merge pull request #11048 from offlinehacker/pkgs/influxdb/update_0.9.4
...
influxdb: 0.8.3 -> 0.9.4, fix module
2015-11-17 17:18:24 +01:00