Commit Graph

112282 Commits

Author SHA1 Message Date
Robin Gloster
f14c27d178
cmus: fix build
fixes #27966
2017-08-06 20:34:14 +02:00
Robin Gloster
1ff2c65acf
phantomjs2: don't use bundled qt 2017-08-06 20:30:17 +02:00
Daiderd Jordan
147cd29fff
rustc: remove gdb dependency for darwin 2017-08-06 19:00:58 +02:00
Michael Weiss
953b232385 gns3-server: init at 2.0.3 2017-08-06 17:40:53 +02:00
Michael Weiss
2bc92695bf pythonPackages.aiohttp: 1.1.6 -> 1.3.5 2017-08-06 17:40:53 +02:00
Michael Weiss
f17cadadd3 pythonPackages.zipstream: init at 1.1.4 2017-08-06 17:40:53 +02:00
Michael Weiss
15bf0f68c3 pythonPackages.aiohttp-cors: init at 0.5.1 2017-08-06 17:40:53 +02:00
Jörg Thalheim
6b9b08eaed Merge pull request #27977 from symphorien/update_par2
par2cmdline: 0.6.13 -> 0.7.3
2017-08-06 15:37:14 +01:00
Jörg Thalheim
f8aa39476a Merge pull request #27973 from edanaher/update-urweb
urweb: 20170105 -> 20170720
2017-08-06 15:33:52 +01:00
Tim Steinbach
83b7a415d5 Merge pull request #27970 from NeQuissimus/expand_hardened_config
linux: Expand hardened config
2017-08-06 10:11:57 -04:00
Tim Steinbach
747cbbad71 Merge pull request #27969 from NeQuissimus/atom_paxmark
atom: Add paxmark
2017-08-06 10:03:32 -04:00
Tim Steinbach
e8238436f1 Merge pull request #27954 from lheckemann/timezone-release-notes
Document timezone changes in release notes
2017-08-06 10:00:10 -04:00
Roman Volosatovs
2700b62168 grml-zsh-config: 0.12.4 -> 0.14.2 (#27961)
* grml-zsh-config: 0.12.4 -> 0.14.2

* grml-zsh-config: fix typo
2017-08-06 14:58:38 +01:00
Tim Steinbach
ff10bafd00
linux: Expand hardened config
Based on latest recommendations at
http://kernsec.org/wiki/index.php/Kernel_Self_Protection_Project/Recommended_Settings
2017-08-06 09:58:02 -04:00
Gabriel Ebner
357b93e1b1 anki: 2.0.36 -> 2.0.46 2017-08-06 15:33:50 +02:00
Franz Pletz
0f4179aed2
fixup! reword 2017-08-06 15:16:57 +02:00
Symphorien Gibol
aec9f1b9d8 par2cmdline: 0.6.13 -> 0.7.3 2017-08-06 14:50:15 +02:00
Michael Weiss
b0a2ea01c5 python3Packages.zodb: Fix the build
Side note: Not sure if it makes sense that zodb3 depends on zodb (zodb4)
via ZEO.
2017-08-06 14:45:52 +02:00
Michael Weiss
4b0afc169d zpl*: Fix the attribute name of the license
This was simply a typo since the license was added in 2013.
2017-08-06 13:49:18 +02:00
Daiderd Jordan
7960bbff14
gnutls: fix darwin build 2017-08-06 13:07:52 +02:00
Vladimír Čunát
332a60cbd1
release.nix: resurrect stdenvBootstrapTools
13d6681ce7 crippled it unintentionally.
Also remove the incorrect/non-existing stdenv.i686-linux;
building the bootstrap tools should be a good-enough test anyway.
2017-08-06 12:35:34 +02:00
Robin Gloster
145be4e340
Merge commit 'ad83979e5986fa3bb0d254c2be9482c12a8743b9' from staging 2017-08-06 11:21:53 +02:00
Vladimír Čunát
a5e135ef7c
release.nix: fix a typo from #27923, build stdenv
The typo removed also all aarch64-linux on Hydra.
2017-08-06 11:00:51 +02:00
Daiderd Jordan
4cd46c1fe6 Merge pull request #27976 from Infinisil/fix-python-doc
docs: fix error in nix expression
2017-08-06 10:59:37 +02:00
Domen Kožar
71bebd5254
{fs,h}notify: move to configuration-nix.nix 2017-08-06 10:42:37 +02:00
Domen Kožar
8e16cee256
double-conversion: remove patch superseeded by ghc patch
https://github.com/NixOS/nixpkgs/pull/27584
2017-08-06 10:42:37 +02:00
Silvan Mosberger
dcf651b468
docs: fix error in nix expression 2017-08-06 10:18:36 +02:00
Gabriel Ebner
e619ace733 perlPackages.TextBibTeX: fix build 2017-08-06 09:28:02 +02:00
Gabriel Ebner
7cc0ef8937 goldendict: fix build by upgrading to qt 5.9 2017-08-06 09:06:24 +02:00
Evan Danaher
b769a94153 urweb: 20170105 -> 20170720 2017-08-05 22:28:19 -04:00
Michael Weiss
acb9ca3006 gns3-gui: init at 2.0.3 2017-08-06 01:55:49 +02:00
Tim Steinbach
74998657c7 Merge pull request #27902 from LumiGuide/flockit
flockit: init at 2012-08-11
2017-08-05 18:54:27 -04:00
Bas van Dijk
872d8fc5c9 flockit: init at 2012-08-11
The flockit library and tool exists solely because rsync doesn't have file
locking.

It's not used like a normal library; you don't link against it, and you don't
have to patch your source code to use it. It's inserted between your program and
its libraries by use of LD_PRELOAD.

For example:

  $ env LD_PRELOAD=$(nix-build -A pkgs.flockit)/lib/libflockit.so FLOCKIT_FILE_PREFIX=test rsync SRC DEST

Besides the library a handy executable is provided which can simplify the above to:

  $ $(nix-build -A pkgs.flockit)/bin/flockit test rsync SRC DEST

Also see the following blog post:
https://www.swiftstack.com/blog/2012/08/15/old-school-monkeypatching/
2017-08-06 00:38:29 +02:00
Tim Steinbach
731a08730f
atom: Add paxmark 2017-08-05 14:36:00 -04:00
Daiderd Jordan
e66c85d196 Merge pull request #27955 from holidaycheck/remove-nodejs-7
nodejs: remove version 7_x
2017-08-05 17:43:16 +02:00
Daiderd Jordan
4e24cc32bc Merge pull request #27544 from cse-bristol/linode-api-python
linode-api: init at 4.1.1b2
2017-08-05 17:40:33 +02:00
Tim Steinbach
46f586fb25 Merge pull request #27891 from jraygauthier/jrg/clementine_from_123_to_131
clementine: 1.2.3 -> 1.3.1
2017-08-05 10:32:27 -04:00
Tim Steinbach
3ed5af74a5 Merge pull request #27894 from jameysharp/cucumber
cucumber: init at 2.4.0
2017-08-05 10:30:20 -04:00
Tim Steinbach
177e06237d Merge pull request #27945 from yegortimoshenko/patch-1
bitwig-studio: 2.0 -> 2.1.3, fix desktop file
2017-08-05 09:58:49 -04:00
Tim Steinbach
1b522830b4 Merge pull request #27956 from holidaycheck/git-lfs-2.2.1
git-lfs: 2.0.2 -> 2.2.1
2017-08-05 09:53:03 -04:00
Tim Steinbach
0147af2226 Merge pull request #27959 from taku0/android_sdk_25.2.5
android-sdk: 25.2.3 -> 25.2.5
2017-08-05 09:46:38 -04:00
taku0
53301fcd63 android-sdk: 25.2.3 -> 25.2.5 2017-08-05 22:22:18 +09:00
Mathias Schreck
e19a7068ba git-lfs: 2.0.2 -> 2.2.1 2017-08-05 14:22:18 +02:00
Vincent Laporte
c7c24740a9 obelisk: fix hash 2017-08-05 13:29:00 +02:00
Mathias Schreck
28b0a79c04 nodejs: remove version 7_x
nodejs v7 reached its end of life in June 2017.
2017-08-05 13:17:50 +02:00
Linus Heckemann
0abf9d2b12 Document timezone changes in release notes 2017-08-05 12:06:31 +01:00
Jan Tojnar
c9d419a22b gnome: Further fixes for Using the 'memory' GSettings backend issue 2017-08-05 12:21:00 +02:00
midchildan
0e192d5d4f gnome: Fix the issue Using the 'memory' GSettings backend issue 2017-08-05 12:21:00 +02:00
Graham Christensen
7d0b001d4a nixos,nixpkgs: only build essentials on i686 2017-08-05 12:06:05 +02:00
Vincent Laporte
eb7312ca7d maxima: 5.39.0 -> 5.40.0 2017-08-05 10:48:50 +02:00