Michael Raskin
b89d66a198
Merge pull request #23062 from spacefrogg/ptask
...
ptask: init at 1.0.0
2017-03-18 17:21:13 +01:00
Michael Raskin
e8d7014dac
Merge pull request #22722 from patternspandemic/kodestudio
...
kodestudio: init at 17.1
2017-03-18 17:18:10 +01:00
Frederik Rietdijk
06527e8217
Merge remote-tracking branch 'upstream/staging' into HEAD
2017-03-18 15:35:46 +01:00
Joachim Fasting
b5da6ca213
linux_4_9: 4.9.15 -> 4.9.16
2017-03-18 15:32:56 +01:00
Joachim Fasting
d4409817a6
grsecurity: 4.9.15-201703150049 -> 4.9.16-201703180820
2017-03-18 15:32:48 +01:00
Frederik Rietdijk
e67b979ab5
Merge remote-tracking branch 'upstream/master' into HEAD
2017-03-18 15:32:43 +01:00
Vincent Laporte
959064cfbe
ocamlPackages.ppx_deriving_yojson: init at 3.0
...
deriving Yojson is a ppx_deriving plugin that generates JSON serializers and
deserializers that use the Yojson library from an OCaml type definition.
Homepage: https://github.com/whitequark/ppx_deriving_yojson
2017-03-18 12:58:49 +00:00
Daiderd Jordan
7d81be90c2
Merge pull request #23569 from LnL7/darwin-idutils
...
idutils: disable tests on darwin
2017-03-18 13:26:25 +01:00
Robin Gloster
4e2f802ce8
gnome_mplayer: fix src and build
2017-03-18 12:47:57 +01:00
Michael Raskin
eeef599ced
wayv: install docs
2017-03-18 12:41:09 +01:00
Michael Raskin
5833da6ad5
wayv: init at 0.3
2017-03-18 12:41:09 +01:00
Michael Raskin
6e74e165cb
xannotate: init at 20150301
2017-03-18 12:41:09 +01:00
Michael Raskin
266fb8845a
xxdiff-tip: init at 4.0.1.20170111
...
Supports Qt5
2017-03-18 12:41:09 +01:00
Michael Raskin
54aff5c3a7
Merge pull request #23999 from ndowens/salut-a-toi
...
salut-a-toi: 0.2.0 -> 0.6.1
2017-03-18 11:43:54 +01:00
Joachim Schiele
6022a79cbc
nixos/release.nix: added tests.wordpress
2017-03-18 11:10:49 +01:00
Vladimír Čunát
742b120ddc
Merge branch 'master' into staging
...
Nontrivial rebuilds from master, again :-/
2017-03-18 11:00:31 +01:00
Frederik Rietdijk
553964ca71
Merge pull request #23976 from ebzzry/emem-0.2.42
...
emem: 0.2.41 -> 0.2.42
2017-03-18 10:33:02 +01:00
Pascal Wittmann
eef0521b73
Merge pull request #23991 from NickHu/tvheadend
...
tvheadend: fix typo in package description
2017-03-18 10:25:46 +01:00
Lluís Batlle i Rossell
f77ae4e726
amule: 2.3.1 -> 2.3.2
2017-03-18 09:36:08 +01:00
Frederik Rietdijk
b0ba94310d
Merge pull request #23959 from LnL7/znc-1.6.5
...
znc: 1.6.4 -> 1.6.5
2017-03-18 09:29:22 +01:00
Frederik Rietdijk
ce9576dc47
Merge pull request #24001 from ndowens/mpop
...
mpop: 1.2.4 -> 1.2.6
2017-03-18 09:10:42 +01:00
Frederik Rietdijk
976e5bfbd4
Merge pull request #23968 from ndowens/libibmad
...
libibmad: 1.3.12 -> 1.3.13
2017-03-18 09:09:15 +01:00
Peter Hoeg
ee20e89644
virtmanager-qt: 0.39.60 -> 0.42.67
2017-03-18 12:32:49 +08:00
obadz
17bfb6a08a
citrix-receiver: add link to webpage with all versions and adjust to change in nix-prefetch-url
...
Helps with #23975
2017-03-18 02:18:28 +00:00
Joachim F
aa5777df77
Merge pull request #23952 from joachifm/libsodium-bump
...
libsodium: 1.0.11 -> 1.0.12
2017-03-18 02:46:41 +01:00
Joachim F
5d51f1d7b1
Merge pull request #24000 from taku0/firefox-bin-52.0.1
...
firefox, firefox-bin: 52.0 -> 52.0.1, firefox-esr: 52.0esr -> 52.0.1esr [Critical security fix]
2017-03-18 02:32:27 +01:00
ndowens
8ef05d3010
mpop: 1.2.4 -> 1.2.6
2017-03-17 20:02:23 -05:00
Benno Fünfstück
a4d6e2cf16
atom: avoid using LD_PRELOAD. Fixes glibc compat issues
...
The wrapper for Atom was loading libraries via LD_PRELOAD, for example
libxkbfile. Now, if you installed atom via nix-env and happened to use a newer
nixpkgs for that than what your system environment is build against, you could
end up with an error like this:
```
uname: relocation error:
/nix/store/68sa3m89shpfaqq1b9xp5p1360vqhwx6-glibc-2.25/lib/libdl.so.2:
symbol _dl_catch_error, version GLIBC_PRIVATE not defined in file libc.so.6
with link time reference
```
This happens because atom calls the `uname` executable from the system to
determine the platform. Because that inherits the `LD_PRELOAD` environment
variable, so the libxkbfile library that the `atom` wrapper was build against
is loaded into `uname`. But since `atom` comes from `nix-env`, the `libxkbfile`
it was built with might be compiled against a newer version of `glibc` than
`uname`, which comes from the system, was! Having two versions of glibc loaded
into the same processes results in chaos.
To fix this, we avoid setting `LD_PRELOAD` and instead use patchelf to set the
correct RPATH. RPATH is not inherited by child processes, so the above issue
can no longer occur.
The only small complication here is that the library that actually loads
libxkbfile is not the atom binary itself, but a node extension that atom uses.
So instead of setting the RPATH on `atom` only, we also set the `rpath` on all
node extensions (`*.node`) the output.
2017-03-18 01:51:36 +01:00
ndowens
d26775fce7
salut-a-toi: 0.2.0 -> 0.6.1
...
salut-a-toi: Removed un-needed python variable in function
2017-03-17 19:50:04 -05:00
taku0
a038f91871
firefox-esr: 52.0esr -> 52.0.1esr
2017-03-18 09:36:27 +09:00
taku0
3f175876e8
firefox, firefox-bin: 52.0 -> 52.0.1
2017-03-18 09:36:12 +09:00
Will Dietz
63f1a14ae5
neo4j service: increase file limit, per warning emitted at startup ( #23961 )
2017-03-18 01:03:09 +01:00
Joachim F
9a976c09ba
Merge pull request #23963 from dtzWill/feature/irkerd
...
irker: init at 2017-02-12
2017-03-18 00:35:32 +01:00
Franz Pletz
9536169074
nixos/treewide: remove boolean examples for options
...
They contain no useful information and increase the length of the
autogenerated options documentation.
See discussion in #18816 .
2017-03-17 23:36:19 +01:00
Nikolay Amiantov
a8785daf0e
emacs: fix runtime GTK3 dependencies
...
Fixes #23845 .
2017-03-18 01:32:42 +03:00
Michael Fellinger
6cc1200bd5
marathonctl: init at 2017-03-06
2017-03-17 23:10:27 +01:00
Tim Steinbach
ca3fb4d1d4
linux: 4.4.53 -> 4.4.54
2017-03-17 17:25:40 -04:00
Tim Steinbach
81ad24d4d7
linux: 4.10.2 -> 4.10.3
2017-03-17 17:19:59 -04:00
Thomas Tuegel
73ccc49448
Merge pull request #23992 from ttuegel/kde-applications-16.12.3
...
KDE Applications: 16.12.2 -> 16.12.3
2017-03-17 15:40:42 -05:00
Daiderd Jordan
908e3ffd65
znc: 1.6.4 -> 1.6.5
2017-03-17 21:02:01 +01:00
Renaud
1129f92f65
file: 5.28 -> 5.30
2017-03-17 19:43:50 +01:00
Rommel M. Martinez
dbee6b6ef8
emem: 0.2.41 -> 0.2.42
2017-03-18 01:39:03 +08:00
Nick Hu
ff7506d665
tvheadend: fix typo in package description
2017-03-17 17:28:48 +00:00
Emery Hemingway
fa65cc067b
xaster: init at release 208
2017-03-17 12:09:37 -05:00
Emery Hemingway
7196d16e3f
shapelib: init at 1.4.0
2017-03-17 12:09:37 -05:00
Robin Gloster
427edf1e5d
robomongo: mark as broken
2017-03-17 16:45:37 +01:00
Joachim F
01f8e2161c
Merge pull request #23962 from oxij/nixos/tor-sec
...
nixos: tor: usability and security fixes
2017-03-17 16:14:41 +01:00
Pascal Bach
3728143cbc
prometheus-unifi-exporter: init at 0.4.0
2017-03-17 15:41:22 +01:00
Kamil Chmielewski
017fddb4be
ponyc: 0.11.0 -> 0.11.3
2017-03-17 15:36:10 +01:00
Will Dietz
2807d75dca
irkerd service: init
2017-03-17 09:16:32 -05:00