Commit Graph

75394 Commits

Author SHA1 Message Date
Moritz Ulrich eec7eafe6f rustRegistry: 2016-06-26 -> 2016-07-13. 2016-07-13 20:08:11 +02:00
Moritz Ulrich 8c45378cde rustc: 1.9.0 -> 1.10.0, cargo: 0.10.0 -> 0.11.0 2016-07-13 20:08:05 +02:00
Alexey Lebedeff 54a15fb2e4 erlang: 18.3 -> 18.3.4 (#16244)
Minor OTP releases (and their manpages) are not available for dowload at
http://erlang.org/download
But e.g.:
- 18.3.1 contains an important fix for mnesia
- 18.3.1-18.3.4 has a lot of SSL/TLS fixes

So we have to fetch from GitHub and build everything ourselves.

Also replace explicit path patching with upstream patches:
- https://github.com/erlang/otp/pull/1023
- https://github.com/erlang/otp/pull/1103 - with this patch it's now
  possible to build erlang in sandboxed mode
2016-07-13 19:41:55 +02:00
Damien Cassou 5d0014801e Merge pull request #16887 from DamienCassou/fix-gnome-tweak-tools
gnome-tweak-tools: fix missing gi module
2016-07-13 17:32:51 +02:00
Ioannis Koutras d861911263 ocproxy: init at 1.50 2016-07-13 17:15:23 +03:00
Tristan Helmich c6f5accb43 emby: 3.0.5972 -> 3.0.5985 (#16893) 2016-07-13 13:57:40 +02:00
Gabriel Ebner 70e2438530 Merge pull request #16913 from womfoo/init/mc-4.8.17
mc: 4.8.16 -> 4.8.17
2016-07-13 13:44:13 +02:00
Robert Helgesson c9b9619636 nethogs: 0.8.1 -> 0.8.5 2016-07-13 13:17:24 +02:00
Kranium Gikos Mendoza 12effae5b6 mc: 4.8.16 -> 4.8.17 2016-07-13 18:52:31 +08:00
Arseniy Seroka a7f87bd518 Merge pull request #16904 from womfoo/fix-bump/smbldaptools-0.9.11
smbldaptools: 0.9.10 -> 0.9.11
2016-07-13 14:52:07 +04:00
obadz 927a984de6 kernel: make KEXEC_FILE & KEXEC_JUMP optional to fix i686 build
cc @edolstra @dezgeg @domenkozar
2016-07-13 12:49:18 +02:00
Robert Helgesson 3ce829ca03 perl-MouseX-Getopt: 0.36 -> 0.37 2016-07-13 12:35:06 +02:00
Robert Helgesson 2e56d68164 perl-Getopt-Long-Descriptive: 0.099 -> 0.100 2016-07-13 12:35:06 +02:00
Robert Helgesson fdef298dd7 perl-File-Util: 4.161200 -> 4.161950 2016-07-13 12:35:06 +02:00
Robert Helgesson e196d30c1f perl-CryptX: 0.037 -> 0.038 2016-07-13 12:35:06 +02:00
Robert Helgesson cf7d968f3a perl-bignum: 0.42 -> 0.43 2016-07-13 12:35:06 +02:00
obadz fad9a8841b ecryptfs: fix kernel bug introduced in 4.4.14
Introduced by mainline commit 2f36db7
Patch is from http://www.spinics.net/lists/stable/msg137350.html
Fixes #16766
2016-07-13 11:04:07 +02:00
Gabriel Ebner 5737c26b6b Merge pull request #16898 from kragniz/mpv-0.18.1
mpv: 0.17.0 -> 0.18.1
2016-07-13 10:55:52 +02:00
Edward Tjörnhammar 60e5b599d5
storm: 0.8.2 -> 1.0.1
For this package to be useful you need to wrap it in a fhs-user-env and/or
create a nixos module. Previous version had become completely broken/useless
though.
2016-07-13 06:45:33 +02:00
Edward Tjörnhammar 6423ded1bc
idea.idea-{community,ultimate}: 2016.1.3 -> 2016.2 2016-07-13 06:42:24 +02:00
Kranium Gikos Mendoza d5e70a2adc smbldaptools: 0.9.10 -> 0.9.11 2016-07-13 09:01:25 +08:00
Nikolay Amiantov d9aafc885f Merge branch 'early-kbd' into staging 2016-07-13 03:56:07 +03:00
Nikolay Amiantov 1848bfc92d Merge branch 'plymouth' into staging 2016-07-13 03:54:38 +03:00
Alexey Shmalko 0172558e82 buildEnv: build the whole tree of directories to pathsToLink
This patch fixes #16614 and #16741.

The first issue was caused by the fact that both `/share` and
`/share/fish/vendor_completions.d` end in the `pathsToLink`. The
`pkgs/build-support/buildenv/builder.pl` creates `/share`, then links
`/share/fish` under `/share` and then tries to create the directory
`/share/fish/vendor_completions.d` and fails because it already exists.

The simplest way to reproduce the issue is to build the next Nix
expression:

```nix
let pkgs = import <nixpkgs> { };
in pkgs.buildEnv {
  name = "buildenv-issue";

  paths = [
    pkgs.fish
    pkgs.vim
  ];

  pathsToLink = [
    "/share"
    "/share/fish/vendor_completions.d"
  ];
}
```

The second issue is more critical and was caused by the fact findFiles
doesn't recurse deep enough. It stops at first unique directory for the
package (e.g., "/share" or even "/") and later the scripts decides it
shouldn't link it as it doesn't match pathsToLink (e.g., "/share/fish"),
so the result is empty.

The test:
```nix
let pkgs = import <nixpkgs> { };
in pkgs.buildEnv {
  name = "buildenv-issue";

  paths = [
    pkgs.fish
    pkgs.vim
  ];

  pathsToLink = [
    "/share/fish/functions"
  ];
}
```

or

```nix
let pkgs = import <nixpkgs> { };
in pkgs.buildEnv {
  name = "buildenv-issue";

  paths = [
    pkgs.vim
  ];

  pathsToLink = [
    "/share"
  ];
}
```
2016-07-13 03:54:11 +03:00
Louis Taylor 3e582d39ef mpv: 0.17.0 -> 0.18.1 2016-07-12 23:58:15 +01:00
Vladimír Čunát f56a319e3e ncurses: revert to 5.9 on Darwin (only)
I don't want to investigate why it won't compile.
http://hydra.nixos.org/build/37537876/nixlog/1/raw
2016-07-12 22:00:11 +02:00
Vladimír Čunát 40785f0dac Merge branch 'master' into staging
Hydra nixpkgs: ?compare=1282763
2016-07-12 22:00:10 +02:00
Nikolay Amiantov 246ad0159f gdm: build with plymouth support 2016-07-12 22:22:29 +03:00
Nikolay Amiantov 6e21246dc4 plymouth: 0.9.0 -> 0.9.2
Use system-wide directories for various resources.
2016-07-12 22:22:28 +03:00
Franz Pletz dde259dfb5 linux: Add patch to fix CVE-2016-5829 (#16824)
Fixed for all available 4.x series kernels.

From CVE-2016-5829:

  Multiple heap-based buffer overflows in the hiddev_ioctl_usage function
  in drivers/hid/usbhid/hiddev.c in the Linux kernel through 4.6.3 allow
  local users to cause a denial of service or possibly have unspecified
  other impact via a crafted (1) HIDIOCGUSAGES or (2) HIDIOCSUSAGES ioctl
  call.
2016-07-12 20:56:50 +02:00
Thomas Tuegel 724224f8f7 Merge pull request #16838 from vandenoever/plasma-57
KDE Plasma 5.7 and KDE Frameworks 5.24
2016-07-12 12:34:55 -05:00
joachifm 9903923572 Merge pull request #16805 from rnhmjoj/mutt
mutt: 1.6.0 -> 1.6.2
2016-07-12 18:36:19 +02:00
Jos van den Oever b42ff8182a kde frameworks: 5.22 -> 5.24 2016-07-12 17:59:48 +02:00
Jos van den Oever fd0373c589 kde plasma: 5.6.5 -> 5.7.0 2016-07-12 17:59:42 +02:00
Damien Cassou a347b944d9 gnome-tweak-tools: fix missing gi module
I changed from python3Packages to python2Packages because I couldn't
make it work with python3Packages. This seems similar to:
https://github.com/NixOS/nixpkgs/pull/16747#discussion_r69937281
2016-07-12 16:50:56 +02:00
joachifm 3df7f3cbc3 Merge pull request #16831 from womfoo/fix-bump/gtkgnutella-1.1.9
gtk-gnutella: fix build and 1.1.5 -> 1.1.9
2016-07-12 16:21:36 +02:00
joachifm 7135dfd541 Merge pull request #16836 from brainrape/update-youtube-dl
youtube-dl: 2016.07.03.1 -> 2016.07.09.2
2016-07-12 16:21:26 +02:00
joachifm 4620221a51 Merge pull request #16839 from frlan/Update/Geany/1.28
geany: 1.27 -> 1.28
2016-07-12 16:21:02 +02:00
joachifm 03a7fa9104 Merge pull request #16840 from womfoo/bump/leatherman-0.7.5-facter-3.1.8
Bump leatherman: 0.7.0 -> 0.7.5 and sole dependency facter 3.1.6 -> 3.1.8
2016-07-12 16:20:51 +02:00
joachifm ecb5a56b4e Merge pull request #16300 from schneefux/gopkg-minify
minify: init at v2.0.0
2016-07-12 16:20:28 +02:00
joachifm 7a54a71c9e Merge pull request #16808 from 4z3/urlwatch
urlwatch: 2.1 -> 2.2
2016-07-12 16:20:17 +02:00
Arseniy Seroka 356e9c04da Merge pull request #16771 from mimadrid/init/universal-ctags-2016-07-06
universal-ctags: init at 2016-07-06
2016-07-12 17:56:30 +04:00
joachifm c07866a641 Merge pull request #16882 from elitak/factorio013
factorio: 0.12.35 -> 0.13.8
2016-07-12 15:51:43 +02:00
Joachim Fasting 416120e0c7
grsecurity: 4.6.3-201607070721 -> 4.6.4-201607112205 2016-07-12 15:15:09 +02:00
Eric Litak 2b47d24007 factorio: 0.12.35 -> 0.13.8 2016-07-12 05:03:51 -07:00
Eric Bailey 9d58f894cd lfe: init at 1.1.1 (#16865)
This is a first pass at adding an LFE package.

N.B. man pages are ignored for now.
2016-07-12 13:48:33 +02:00
Eelco Dolstra 0fa00cce01 awscli: 1.10.38 -> 1.10.46 2016-07-12 13:38:13 +02:00
Renzo Carbonara 103ae01173 zoom-us: init at 2.0.52458.0531 (#15607) 2016-07-12 13:37:11 +02:00
Frederik Rietdijk 8710a9d57c Merge pull request #16881 from martingms/mypy-missing-deps
mypy-lang: Add missing lxml dependency
2016-07-12 13:25:52 +02:00
Martin Gammelsæter 6c77af6f60 mypy-lang: Add missing lxml dependency 2016-07-12 11:22:24 +02:00
mimadrid bab3d4c3e0
i3lock: 2.7 -> 2.8 2016-07-12 11:15:51 +02:00
Tim Steinbach 71ad2ed226 oh-my-zsh: 2016-06-18 -> 2016-07-05 (#16874) 2016-07-12 09:55:17 +02:00
Tim Steinbach 47da65923b kernel: 4.6.3 -> 4.6.4 (#16875) 2016-07-12 09:54:57 +02:00
Gabriel Ebner 05315dc183 Merge pull request #16873 from NeQuissimus/conky1_10_3
conky: 1.10.1 -> 1.10.3
2016-07-12 08:30:18 +02:00
Gabriel Ebner 51e1b2508c Merge pull request #16878 from womfoo/bump/siege-4.0.2
siege: 4.0.1 -> 4.0.2
2016-07-12 08:23:15 +02:00
Gabriel Ebner e389f72403 Merge pull request #16871 from NeQuissimus/feh2161
feh: 2.15.4 -> 2.16.1
2016-07-12 08:16:51 +02:00
Kranium Gikos Mendoza e54223e8bb siege: 4.0.1 -> 4.0.2 2016-07-12 13:31:31 +08:00
Tuomas Tynkkynen 9391640fa4 Merge pull request #16872 from NeQuissimus/kotlin103
kotlin: 1.0.2 -> 1.0.3
2016-07-12 05:35:47 +03:00
Rok Garbas fc29868d24 pythonPackages.Flootty: init at 3.2.0 2016-07-12 02:06:47 +02:00
Tim Steinbach 9672c36651 conky: 1.10.1 -> 1.10.3 2016-07-11 23:20:25 +00:00
Tim Steinbach f7ab48a401 feh: 2.15.4 -> 2.16.1 2016-07-11 23:15:51 +00:00
Tim Steinbach a0009e1ae5 kotlin: 1.0.2 -> 1.0.3 2016-07-11 23:14:30 +00:00
Nikolay Amiantov ec73d072ae lgogdownloader: 2.26 -> 2.28 2016-07-12 00:56:10 +03:00
Nikolay Amiantov 36725623f9 liboauth: propagate inputs wanted by pkgconfig 2016-07-12 00:56:10 +03:00
Rok Garbas 963327aacb vimPlugins: updating plugin and adding floobits plugin 2016-07-11 22:49:16 +02:00
mimadrid 15d28334a7
filezilla: 3.18.0 -> 3.19.0 2016-07-11 22:06:34 +02:00
Martin Gammelsæter 811cf56f5f mypy-lang: init at 0.4.2 2016-07-11 19:35:00 +02:00
Scott Stevenson 8c81c234d3 rcm: 1.2.3 -> 1.3.0 (#16847) 2016-07-11 18:11:31 +02:00
Ram Kromberg 8f98fcd73b lighthouse: init at 2016-01-26 (#16849) 2016-07-11 18:10:43 +02:00
Daiderd Jordan bc39354269 elixir: 1.3.0 -> 1.3.1 2016-07-11 18:06:54 +02:00
Eric Sagnes 1b41283eb3 wireguard: init at 20160708 (#16856) 2016-07-11 18:05:23 +02:00
Alexander V. Nikolaev dc5293d80b wine: 1.9.13 -> 1.9.14 (#16862)
* Update wineUnstable: 1.9.13 -> 1.9.14
* Update staging: 1.9.13 -> 1.9.14
* Add myself as co-maintainer, because I am do regular updates.
2016-07-11 17:57:16 +02:00
Louis Taylor b2b8a89945 linux-testing: 4.7-rc6 -> 4.7-rc7 (#16854) 2016-07-11 17:53:41 +02:00
Eric Sagnes 1349cd4e8d fcitx: refactor (#16858) 2016-07-11 17:50:22 +02:00
José Romildo Malaquias 60887fa193 mate-icon-theme-faenza: 1.15.0 -> 1.15.1 (#16859) 2016-07-11 17:48:02 +02:00
Adolfo E. García b25d21955e libqrencode: init at 3.4.4
* libqrencode: init at 3.4.4
* libqrencode: add maintainer

#16861
2016-07-11 17:46:30 +02:00
Nikolay Amiantov 6a3e2f89fb steam: fix primus with new libstdc++ and add to steam-run 2016-07-11 18:08:13 +03:00
Eelco Dolstra ecc26d7a40 linux: Disable the old IDE subsystem
This has long been deprecated in favour of the new ATA support
(CONFIG_ATA).
2016-07-11 15:05:21 +02:00
Eelco Dolstra 7b9c493d60 linux: Enable some kernel features
This enables a few features that should be useful and safe (they're
all used by the default Ubuntu kernel config), in particular zswap,
wakelocks, kernel load address randomization, userfaultfd (useful for
QEMU), paravirtualized spinlocks and automatic process group
scheduling.

Also removes some configuration conditional on kernel versions that we
no longer support.
2016-07-11 15:04:56 +02:00
Eelco Dolstra 1cd7dbc00b linux: Bump NR_CPUS
The default limit (64) is too low for systems like EC2 x1.* instances
or Xeon Phis, so let's increase it.
2016-07-11 14:32:18 +02:00
Eelco Dolstra 8710672225 ena: Init at 20160629
This adds the Amazon Elastic Network Adapter kernel module required by
EC2 x1.* instances.
2016-07-11 14:32:18 +02:00
Domen Kožar 5789f5875f nix-repl: 2015-09-07 -> 2016-02-28 2016-07-11 14:00:28 +02:00
zimbatm a265ad2842 firefox-developer-bin: fix hashes (#16860)
the nightly tend to get replaced in-place on the FTP and so benefit from
an update script as well
2016-07-11 13:40:58 +02:00
Nikolay Amiantov 1a802e729d Merge pull request #16853 from Jookia/RFC_zdoom-nonfree
zdoom: Mark it and its forks as nonfree.
2016-07-11 14:18:02 +04:00
Oliver Charles 65ac26e28a Merge pull request #16841 from womfoo/bump/bluejeans-2.160.63.8
bluejeans: 2.160.49.8 -> 2.160.63.8
2016-07-11 10:00:18 +01:00
Eelco Dolstra 05bdc0c89f Remove unnecessary references to gcc5
These cause an unnecessary rebuild of gcc.
2016-07-11 10:46:34 +02:00
Eelco Dolstra 2aadeb2cb5 Add App::St 2016-07-11 10:46:34 +02:00
Gabriel Ebner ad41b8fa19 mu: fix build of webkit support and re-enable it 2016-07-11 10:37:31 +02:00
Louis Taylor 5ee480bce5 fish: 2.3.0 -> 2.3.1 2016-07-11 05:43:47 +01:00
Franz Pletz 0f96c69026 batman-adv: 2016.1 -> 2016.2 2016-07-11 04:04:49 +02:00
Jookia ba2232f1f2 srelay: init at 0.4.8b6 (#16833) 2016-07-11 03:41:02 +02:00
Jookia e5154f2ab2 zdoom: Mark it and its forks as nonfree.
See http://zdoom.org/wiki/License and the source code of each package.
2016-07-11 11:05:34 +10:00
Nikolay Amiantov f57fe6c2f9 simplescreenrecorder: fix paths to LD_PRELOADed part 2016-07-11 01:42:08 +03:00
Ram Kromberg ec5ec31411 pngpp: init at 0.2.9 (#16782) 2016-07-10 23:20:03 +02:00
Nikolay Amiantov e4aace7028 qt-recordmydesktop: init at 0.3.8-svn602 2016-07-10 22:57:00 +03:00
Nikolay Amiantov 7e0a6dd827 gtk-recordmydesktop: init at 0.3.8-svn602 2016-07-10 22:56:59 +03:00
Nikolay Amiantov 29d570ef82 recordmydesktop: use ALSA backend 2016-07-10 22:46:04 +03:00
Oliver Hunt 85c6ab9c8a pythonPackages.lektor: init at 2.3 2016-07-10 20:43:09 +02:00
Frederik Rietdijk f04b018111 python 3.4.4 -> 3.4.5 2016-07-10 19:16:56 +02:00
Frederik Rietdijk 52bc8d203f python 3.5.1 -> 3.5.2 2016-07-10 19:05:12 +02:00