Peter Simons
7fb7fafe0f
emacs-markdown-mode: add version 2.0-82-gfe30ef7
2015-10-15 14:35:57 +02:00
Tobias Geerinckx-Rice
5d5a03f190
eid-mw 4.1.6 -> 4.1.7
2015-10-15 14:22:02 +02:00
Tobias Geerinckx-Rice
7d64d43b0d
rsstail 2015-09-06 -> 2.1
2015-10-15 14:22:01 +02:00
Tobias Geerinckx-Rice
2252268ee9
pythonPackages.buttersink 0.6.6 -> 0.6.7
2015-10-15 14:22:01 +02:00
Arseniy Seroka
36ee644dfb
Merge pull request #10389 from shdpl/master
...
dex: init at 0.7
2015-10-15 15:12:06 +03:00
Mariusz `shd` Gliwiński
eebbf15da9
dex: init at 0.7
2015-10-15 13:58:52 +02:00
Eelco Dolstra
2e5b6362ae
Bump minimum required Nix version
...
Issue #10337 .
2015-10-15 13:19:51 +02:00
Charles Strahan
cb38f10d12
nixos-generate-config: detect brcmfmac requirement
...
This makes the firmware available (or would, if someone switched off
enableAllFirmware). Corresponding kernel module should get auto-loaded.
See #9948 . Close #9971 .
2015-10-15 13:12:42 +02:00
Rinaldus
4c626f44d9
wine-{unstable,staging}: update 1.7.48 -> 1.7.52
...
Close #10238 .
2015-10-15 12:01:16 +02:00
Pascal Wittmann
b3bce93ab2
Merge pull request #10397 from teh/master
...
Use versioned tarball URL for chkrootkit.
2015-10-15 11:24:06 +02:00
Ricardo M. Correia
18cad45480
flashplayer: 11.2.202.521 -> 11.2.202.535
2015-10-15 11:20:38 +02:00
Tom Hunger
ba99563020
Use versioned tarball URL for chkrootkit.
...
Pointing at the latest version is fragile: Hash updates don't
follow source updates automatically.
2015-10-15 09:56:22 +01:00
Peter Simons
a0376d4666
haskell-conduit: fix build with pre-7.10.x versions of GHC
...
Thanks to @bennofs for finding this issue!
2015-10-15 10:04:14 +02:00
Peter Simons
a7bddbd4ca
hackage-packages.nix: update Haskell package set
...
This update was generated by hackage2nix v20150922-17-gacb24c5 using the following inputs:
- Nixpkgs: d16b4a3e78
- Hackage: bf464d8754
- LTS Haskell: 0d493eae36
- Stackage Nightly: a19cf709b3
2015-10-15 10:04:06 +02:00
Jude Taylor
f4dbf6d7c8
Merge pull request #10187 from NixOS/switch-to-pd
...
Switch stdenvs to pure-darwin
2015-10-14 16:13:25 -07:00
Vincent Laporte
e468b311bc
eliom: requires OCaml >= 4
2015-10-15 00:29:33 +02:00
Arseniy Seroka
9d106f72e2
Merge pull request #10386 from Shados/fix-kodi
...
kodi: Fix SSA/ASS subtitle support
2015-10-15 00:13:43 +03:00
Arseniy Seroka
6d48e23eb0
Merge pull request #10391 from utdemir/jenkins-633
...
jenkins: 1.631 -> 1.633
2015-10-15 00:12:07 +03:00
Arseniy Seroka
e71fcfd3c7
Merge pull request #10392 from expipiplus1/nvim-version
...
neovim: 2015-10-08 -> 2015-10-12
2015-10-15 00:11:52 +03:00
Arseniy Seroka
8bbfec8841
Merge pull request #10393 from expipiplus1/libtermkey-version
...
libtermkey: 0.17 -> 0.18
2015-10-15 00:11:37 +03:00
goibhniu
66fc345cba
Merge pull request #10388 from fps/ardour-update-to-real-4.2
...
ardour: 4.1 -> 4.2 (fix the git revision and hash to _really_ pull the latest 4.2)
2015-10-14 21:28:52 +02:00
Joe Hermaszewski
bb15c81597
libtermkey: 0.17 -> 0.18
2015-10-14 20:27:36 +01:00
Joe Hermaszewski
d5a364cf8f
neovim: 2015-10-08 -> 2015-10-12
2015-10-14 20:15:42 +01:00
Utku Demir
57ad847982
jenkins: 1.631 -> 1.633
2015-10-14 21:21:12 +03:00
Vincent Laporte
37d731790b
ocp-index: requires OCaml >= 4
2015-10-14 19:27:33 +02:00
Vincent Laporte
0da6fb5fa5
ocaml-cmdliner: 0.9.7 -> 0.9.8
2015-10-14 19:27:10 +02:00
Vincent Laporte
92e2e18fbb
ocaml-ocp-indent: 1.4.2b -> 1.5.2
2015-10-14 19:26:38 +02:00
Vincent Laporte
621b66c3df
js_of_ocaml: fix for OCaml < 4.0
2015-10-14 19:25:58 +02:00
Arseniy Seroka
91202fd475
djmount: add missing file
2015-10-14 20:20:30 +03:00
Arseniy Seroka
e2a58a6a03
djmount: init at 0.71
2015-10-14 20:16:29 +03:00
Eelco Dolstra
5f077e2296
Factor out option renaming
...
Option aliases/deprecations can now be declared in any NixOS module,
not just in nixos/modules/rename.nix. This is more modular (since it
allows for example grub-related aliases to be declared in the grub
module), and allows aliases outside of NixOS (e.g. in NixOps modules).
The syntax is a bit funky. Ideally we'd have something like:
options = {
foo.bar.newOption = mkOption { ... };
foo.bar.oldOption = mkAliasOption [ "foo" "bar" "newOption" ];
};
but that's not possible because options cannot define values in
*other* options - you need to have a "config" for that. So instead we
have functions that return a *module*: mkRemovedOptionModule,
mkRenamedOptionModule and mkAliasOptionModule. These can be used via
"imports", e.g.
imports = [
(mkAliasOptionModule [ "foo" "bar" "oldOption" ] [ "foo" "bar" "newOption" ]);
];
As an added bonus, deprecation warnings now show the file name of the
offending module.
Fixes #10385 .
2015-10-14 18:18:47 +02:00
Arseniy Seroka
7b001ed68a
Merge pull request #10380 from brodul/scrolls
...
scrolls: update binary source hash
2015-10-14 18:03:26 +03:00
Arseniy Seroka
88cba6d8b5
yandex-disk: update 0.1.5.905 -> 0.1.5.940
2015-10-14 17:59:12 +03:00
Florian Paul Schmidt
8b847ce3d6
ardour: fix the git revision and hash to _really_ pull the latest 4.2 version
2015-10-14 16:51:04 +02:00
Andraz Brodnik
a6011bb606
scrolls: 2014-03-08 -> 2015-10-13
2015-10-14 16:49:13 +02:00
Arseniy Seroka
e57024f821
Merge pull request #10387 from dochang/update-maintainer
...
git-crypt: update maintainer
2015-10-14 17:45:37 +03:00
Desmond O. Chang
b41742414e
git-crypt: update maintainer
2015-10-14 21:46:27 +08:00
Eelco Dolstra
013cf1b4f2
syslinux: Strip static libraries
...
This prevents a retained dependency on gcc.
2015-10-14 14:29:54 +02:00
Pascal Wittmann
af75246b21
perl-Test-Pod: 1.48 -> 1.51
2015-10-14 14:22:31 +02:00
Pascal Wittmann
171147949d
perl-Test-Requires: 0.06 -> 0.10
2015-10-14 14:22:31 +02:00
Pascal Wittmann
51b4d6fe02
perl-Test-Shared-Fork: 0.29 -> 0.34
2015-10-14 14:22:31 +02:00
Pascal Wittmann
d443e8795d
perl-Test-Spec: 0.47 -> 0.51
2015-10-14 14:22:31 +02:00
Pascal Wittmann
1b40c4bb77
perl-Test-Synopsis: 0.10 -> 0.11
2015-10-14 14:22:31 +02:00
Pascal Wittmann
ac0a757465
perl-Test-TCP: 1.18 -> 2.14
2015-10-14 14:22:31 +02:00
Pascal Wittmann
b8210de891
perl-Test-Trap: 0.2.2 -> 0.3.2
2015-10-14 14:22:31 +02:00
Pascal Wittmann
4e62944d83
perl-Test-Version: 1.002004 -> 2.03
2015-10-14 14:22:31 +02:00
Pascal Wittmann
67861f4b75
perl-Test-Warnings: 0.016 -> 0.021
2015-10-14 14:22:30 +02:00
goibhniu
372e5586b2
Merge pull request #10336 from qknight/borgbackup-0.27
...
borgbackup: bump to 0.27.0 and rename to correct name borgbackup
2015-10-14 14:11:05 +02:00
Eelco Dolstra
a0d7a458b1
Don't block releases on nixos.tests.gnome3.i686-linux
...
http://hydra.nixos.org/build/26702440
Issue #10353 .
2015-10-14 13:55:43 +02:00
Eelco Dolstra
2e098d58d2
libmicrohttpd: Update to 0.9.44
...
Also move the info pages to a separate output, significantly reducing
the size of the main output.
2015-10-14 13:55:43 +02:00