Commit Graph

50850 Commits

Author SHA1 Message Date
Arseniy Seroka
ff4646b170 Merge pull request #6744 from rycee/update/fira
Update 'fira' to version 4.002.
2015-03-11 03:29:28 +03:00
Thomas Tuegel
a25b2b7aa9 kdeApps_14_12: version bump to 14.12.3 2015-03-10 18:24:18 -05:00
William A. Kennington III
26020cfe8a nixos/lightdm: Add a background option 2015-03-10 15:57:46 -07:00
William A. Kennington III
9da09f3fdf nixpkgs: Add nixos-artwork 2015-03-10 15:57:17 -07:00
Peter Jones
0a34c59c38 Add dependency for wicd-gtk to use the systray 2015-03-10 15:19:51 -06:00
William A. Kennington III
7b6e2e1c68 lightdm: Fix rendering 2015-03-10 14:03:18 -07:00
Cillian de Róiste
59be6b06b4 python33Packages.evdev: update from 0.4.6 to 0.4.7 2015-03-10 21:10:31 +01:00
Cillian de Róiste
dfe87f3c28 lmms: update from 1.1.2 to 1.1.3 2015-03-10 21:10:12 +01:00
Pascal Wittmann
aab82ca4c0 Merge pull request #6743 from nslqqq/master
i3: 4.9 -> 4.9.1
2015-03-10 19:18:28 +00:00
William A. Kennington III
0de5e56d87 msgpack: Update to 1.0.0 2015-03-10 11:44:59 -07:00
Robert Helgesson
2491e32cc5 Update 'fira' to version 4.002. 2015-03-10 19:33:33 +01:00
William A. Kennington III
aad4e6fb84 zfs: 2015-03-05 -> 2015-03-10 2015-03-10 11:23:40 -07:00
William A. Kennington III
14d72a1c65 talloc: 2.1.1 -> 2.1.2 2015-03-10 11:17:25 -07:00
Vladimír Čunát
c904f35728 perlPackages.LocalGettext: fix on both Linux and Darwin 2015-03-10 18:46:20 +01:00
Luca Bruno
b1adfeb23d fhs-userenv: Make it work on kernel < 3.19 cc @abbradar
It may not be very secure, but I think it's better to make it work
with older kernel since 3.19 is not the default on nixos.
2015-03-10 18:12:38 +01:00
Joel Taylor
7711446298 build LocaleGettext on darwin 2015-03-10 10:09:41 -07:00
Vladimír Čunát
4b58636c0d Revert "gettext: fix build on darwin"
This reverts commit fc15721871776672488c8b2e85424e4ddcf56cd4.

I trusted the referred comment (and maybe misunderstood it),
but the commit wasn't a good idea at all.
2015-03-10 18:09:03 +01:00
lethalman
fcfe8ecc33 Merge pull request #6737 from anderspapitto/fhs
build-fhs-userenv passes through command line args
2015-03-10 17:53:32 +01:00
Vladimír Čunát
fc15721871 gettext: fix build on darwin
Hash on Linuxes is unchanged. For details about the error see discussion at:
https://github.com/NixOS/nixpkgs/commit/0ffb98828e87612
2015-03-10 17:38:29 +01:00
Nikita Mikhailov
54290aaa35 i3: 4.9 -> 4.9.1 2015-03-10 16:18:50 +01:00
Peter Simons
581a4da7b5 frei0r: fix invalid download URL 2015-03-10 15:42:10 +01:00
Peter Simons
7e45327e9a mnemosyne: update to version 2.3.2 2015-03-10 15:39:28 +01:00
Lluís Batlle i Rossell
44c3256017 Updating gobby and libinfinity. 2015-03-10 14:37:11 +01:00
koral
5d0cc81d08 git: 2.3.1 -> 2.3.2
(cherry picked from commit 50933385c53ae640bfe9188d4111a540feeb648f)
2015-03-10 13:20:02 +01:00
koral
a0da8638d6 git: 2.3.0 -> 2.3.1
(cherry picked from commit 36c1a8a6c7b9fd137f4428dc802978cbc765bdd9)
2015-03-10 13:19:41 +01:00
Peter Simons
f5b2b73dee cabal2nix: update git snapshot to latest version 2015-03-10 13:14:54 +01:00
Peter Simons
5d02f0e854 fetchgit: add 'deepClone' argument to disable shallow fetching
This patch resolves https://github.com/NixOS/nixpkgs/issues/6395. Deep
cloning is useful in combination with 'leaveDotGit' for builds that want
to run "git describe" to obtain a proper version string, etc., like the
'haskellngPackages.cabal2nix' package does.
2015-03-10 13:14:00 +01:00
Peter Simons
8196130a1d Merge pull request #6711 from phile314/dev
haskell: Add uhc compiler
2015-03-10 11:22:15 +01:00
Domen Kožar
3eb0dd5a4c Merge pull request #6738 from rzetterberg/master
django: Adds pypyPackages.django_1_7 (1.7.6)
2015-03-10 11:01:58 +01:00
Richard Zetterberg
8ca89f9383 django: Adds pypyPackages.django_1_7 (1.7.6) 2015-03-10 10:50:55 +01:00
Anders Papitto
4bcc817521 build-fhs-userenv passes through command line args
The motivation for this change is to allow things like the
following derivation, which wraps the debian-packaged
hello binary.

let nixpkgs = import <nixpkgs> {};
    stdenv = nixpkgs.stdenv;
in rec {
  dumb-hello = stdenv.mkDerivation {
    name = "dumb-hello";
    builder = ./builder.sh;
    dpkg = nixpkgs.dpkg;
    src = nixpkgs.fetchurl {
      url = "http://ftp.us.debian.org/debian/pool/main/h/hello-traditional/hello-traditional_2.9-2_amd64.deb";
      md5 = "f5f3c28b65221dae44dda6f242c23316";
    };
  };
  full-hello = nixpkgs.buildFHSUserEnv {
    name = "full-hello";
    targetPkgs = pkgs: [ dumb-hello ];
    multiPkgs = pkgs: [ pkgs.dpkg ];
    runScript = "hello";
  };
}
2015-03-09 23:44:51 -07:00
Austin Seipp
ed75d612d6 nixpkgs: afl 1.49b -> 1.56b
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2015-03-10 01:19:51 -05:00
Tobias Geerinckx-Rice
9e5abbc404 vim-plugins: wakatime 3.0.7 -> 3.0.8 2015-03-10 04:58:45 +01:00
William A. Kennington III
29a343656b lightdm-gtk-greeter: More fixes 2015-03-09 18:42:53 -07:00
William A. Kennington III
fdd2b23c3e hicolor-icon-theme: 0.13 -> 0.14 2015-03-09 18:34:00 -07:00
William A. Kennington III
23194559f3 lightdm: 1.8.6 -> 1.13.1 2015-03-09 17:44:38 -07:00
William A. Kennington III
e76d7e7b53 lightdm-gtk-greeter: 1.6.1 -> 2.0.0 2015-03-09 17:44:16 -07:00
William A. Kennington III
73f3432fbb firmware-linux-nonfree: 2015-02-27 -> 2015-03-09 2015-03-09 17:01:31 -07:00
William A. Kennington III
f227f36f44 libyubikey: 1.12 -> 1.13 2015-03-09 16:57:34 -07:00
William A. Kennington III
3198caae45 libgcrypt: 1.6.2 -> 1.6.3 2015-03-09 16:56:09 -07:00
William A. Kennington III
b0bfff28c9 libgpg-error: 1.17 -> 1.18 2015-03-09 16:56:09 -07:00
William A. Kennington III
0b1489df4e eglibc: Remove as it is now defunct 2015-03-09 16:54:27 -07:00
Philipp Hausmann
2eacaa856b
haskell-uhc: Remove explicit dependency on binary 2015-03-10 00:19:10 +01:00
Sander van der Burg
e61c7ad901 Bump development versions of Disnix 2015-03-09 23:29:40 +01:00
William A. Kennington III
e1703a836e gnupg: 2.0.26 -> 2.0.27 2015-03-09 15:22:59 -07:00
William A. Kennington III
9631f5a718 gnupg: Fix default path to pcsclite 2015-03-09 15:22:59 -07:00
Peter Simons
d388855731 r-SID: mark broken 2015-03-09 21:14:00 +01:00
Nikolay Amiantov
c16188343a steam: add primus support 2015-03-09 23:02:47 +03:00
Nikolay Amiantov
a1440a679d primus: remove old workaround, fix LD_LIBRARY_PATH 2015-03-09 23:02:47 +03:00
Arseniy Seroka
84ab38528b Merge pull request #6730 from abbradar/chrootenv-sound
Cleanup fhs-chrootenv's environment and workaround Steam's sound issues
2015-03-09 22:02:10 +03:00
Arseniy Seroka
b172b9fb37 Merge pull request #6731 from globin/update-rust
Update rust to new nightly (2015-03-09)
2015-03-09 21:59:03 +03:00
aszlig
8cd6d53930
kbd: Patch in support for the Neo keyboard layout.
This adds support for the Neo keyboard layout (http://neo-layout.org/, a
layout optimized for the German language) for the native Linux console.

It also adds build dependencies on autotools and friends, because we
need to recreate the automake config in order to include a new keyboard
layout directory.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-03-09 19:42:59 +01:00
Pascal Wittmann
362f2db258 findbugs: update from 3.0.0 to 3.0.1 2015-03-09 19:35:24 +01:00
Pascal Wittmann
070808283b cpuminer: update from 2.4 to 2.4.1 2015-03-09 19:35:24 +01:00
Pascal Wittmann
a63d87cba8 autossh: update from 1.4d to 1.4e 2015-03-09 19:35:23 +01:00
Robin Gloster
3a32dae799 update rust to new nightly (2015-03-09) 2015-03-09 18:37:30 +01:00
Pascal Wittmann
af0f1840b4 utf8proc: fixed description 2015-03-09 18:35:25 +01:00
Pascal Wittmann
7b2ceb5cf1 Merge pull request #6426 from grwlf/utf8-proc
utf8proc: add the library
2015-03-09 17:34:06 +00:00
Pascal Wittmann
3b1b8fb629 antiword: apply debians patch for CVE-2014-8123
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=771768
2015-03-09 18:27:25 +01:00
Pascal Wittmann
a9719f9dbb global: update from 6.2.12 to 6.3.4 2015-03-09 17:53:45 +01:00
Eric Seidel
1d92bdd1ff help2man: more permissive meta.platforms 2015-03-09 09:43:19 -07:00
Pascal Wittmann
8aec000495 zim: fixed xdg path (closes #4786) 2015-03-09 17:34:26 +01:00
Tobias Geerinckx-Rice
78ec3797ab netsniff-ng: remove useless dependencies
- Replace external `which` with `command -v` built into bash
- Remove non-functional GeoIP dependency for now
2015-03-09 17:23:10 +01:00
Eric Seidel
19a6e3a2e6 emacs24PackagesNg: fix typos in "license" 2015-03-09 09:19:36 -07:00
Eric Seidel
8a970b0b28 emacs24PackagesNg: add recurseIntoAttrs to trigger hydra 2015-03-09 08:52:02 -07:00
Peter Simons
e8b33876af r-Cell: drop obsolete package 2015-03-09 16:43:37 +01:00
Peter Simons
a05aa1a3b1 haskell-ng: update to latest hscolour 2015-03-09 16:37:43 +01:00
Peter Simons
a591dbac3b r-modules: update from CRAN state at 2015-03-09T16:32:24+0100 2015-03-09 16:37:05 +01:00
Peter Simons
3f7de179f5 R: update to version 3.1.3 2015-03-09 16:37:05 +01:00
Peter Simons
97feb65c00 pcsctools: fix evaluation 2015-03-09 16:02:48 +01:00
Vladimír Čunát
943754c5d0 harfbuzz: small update 2015-03-09 15:55:29 +01:00
Vladimír Čunát
947d78c9e8 trustedGrub: fix build by using older automake (again) 2015-03-09 15:55:28 +01:00
Vladimír Čunát
c4f238c39c glib: maintenance update 2015-03-09 15:55:28 +01:00
Vladimír Čunát
6c20e1d0bd xf86-video-vmware: drop patch included in update 2015-03-09 15:55:28 +01:00
Vladimír Čunát
2af0227154 gtk2: small maintenance update 2015-03-09 15:55:28 +01:00
Peter Simons
c776477350 haskell-generic-builder: update and jailbreak cabal files before patchPhase is run
The updated and jailbroken Cabal file must be in place before the
'patchPhase' hook is run, otherwise we cannot use that hook to patch the
Cabal file! Resolves https://github.com/NixOS/nixpkgs/issues/5922.

As an added bonus, this change makes the "jailbreakPhase" obsolete.
2015-03-09 15:55:25 +01:00
Peter Simons
3e9e1a2f4e haskell-generic-builder: set LOCALE_ARCHIVE only on Linux 2015-03-09 15:55:25 +01:00
Peter Simons
0a97e2153e haskell-generic-builder.nix: don't add lib64 directories to the search path
Packages that provide 32 and 64-bit libraries in the same store path are rare
and usually require manual overrides anyway. It seems pointless to try and
guess proper settings for them. The effect is that we'll end up with bogus
settings that take more effort to correct that it takes to configure proper
settings in the first place. Point in case: haskell-cuda and it's configuration
for "cudatools".

Fixes https://github.com/NixOS/nixpkgs/issues/6564.
2015-03-09 15:55:25 +01:00
Luca Bruno
aae9e49cbc Add setup-hook to hicolor_icon_theme 2015-03-09 15:55:24 +01:00
mancha
f43d759bc4 unzip: fix CVE-2014-9636 patch
Close #6544, fixes #6543.
vcunat: no security impact; just fixes false rejections of some rarer
inputs - a problem introduced by the CVE patch.
2015-03-09 15:55:24 +01:00
Peter Simons
c4ff9d10ba haskell-generic-builder: consistently use $TMPDIR to refer to the designated place for temporary files
Resolves https://github.com/NixOS/nixpkgs/issues/6525.
2015-03-09 15:55:24 +01:00
Peter Simons
e2b033cad9 ghc: re-instate code that configures statically linked builds by default
The compiler should not expect to have dynamic versions of all libraries
available, because that configuration doesn't play along nicely with statically
linked libraries.

Fixes https://github.com/NixOS/nixpkgs/issues/6399.
2015-03-09 15:55:24 +01:00
Eduard Bachmakov
aa564bbac5 mesa: big update, and related improvements (close #6367)
* Remove upstreamed patch
* EGL driver dirs are no longer a thing, see mesa commit
  407450eb84f5a1b466a2eff19b85cdee7ac15dfb
  Patching runtime search dir in sources instead (by vcunat).
* static-gallium patch dropped as it causes visibility issues with
  nouveau
* rtti patch dropped as it the relevant configuration has been removed
  upstream; properly fixed by an LLVM flag now
* Checks disabled. This is known and solved upstream. Checks will be
  re-enabled in a future commit when updating to a version containing
  the fixes
* Use llvm-3.5 now (by vcunat).
2015-03-09 15:55:24 +01:00
Eduard Bachmakov
4731485ca2 llvm-3.5: enable RTTI to support mesa
Extracted from #6367.
2015-03-09 15:55:23 +01:00
Vladimír Čunát
a3e0ee10e5 xf86-video-vmware: update 2015-03-09 15:55:23 +01:00
Vladimír Čunát
9c22c1b3d7 xorg: update various modules 2015-03-09 15:55:23 +01:00
Vladimír Čunát
464212e01a dbus: security bump to fix CVE-2015-0245 2015-03-09 15:55:23 +01:00
Vladimír Čunát
c4ac05d47e libdrm: update 2015-03-09 15:55:22 +01:00
Vladimír Čunát
c65a2121e0 glibc: fix -lgcc_s linking
https://github.com/NixOS/nixpkgs/commit/65221567c12eb20d12#commitcomment-9515597
2015-03-09 15:55:22 +01:00
Vladimír Čunát
263d5239d6 gnugrep: fix CVE-2015-1345 by upstream patch 2015-03-09 15:55:22 +01:00
Vladimír Čunát
db847a3345 recode: fix build, needing texinfo now
Also make the build inputs native (no references are retained).
2015-03-09 15:55:22 +01:00
Vladimír Čunát
0ffb98828e libtool: update
I see nothing dangerous in NEWS.
Also refactored the expression.
2015-03-09 15:55:22 +01:00
Vladimír Čunát
8743003935 grep: update
The 2.21 update fixes NixOS/nix#464.
2015-03-09 15:55:21 +01:00
Vladimír Čunát
0619c852cb automake: use 1.14.* as the default
I see 1.15 has been released recently,
but that's probably too new to be the default.
2015-03-09 15:55:21 +01:00
Lluís Batlle i Rossell
a22c19f56a Fixing judy for gcc 4.8
gtkwave crashes often, without this fix.
http://sourceforge.net/p/judy/mailman/message/31995144/
2015-03-09 15:37:50 +01:00
Lluís Batlle i Rossell
a2f4b94dbe Add pcsc-tools, to test ccid cards. 2015-03-09 15:37:50 +01:00
Nikolay Amiantov
e01cd8f214 steam: fix sound issues 2015-03-09 17:29:44 +03:00
Nikolay Amiantov
3e395b71da chroot-env: add locales, refactor environment 2015-03-09 17:29:43 +03:00
Nikolay Amiantov
e3ab3df26e chroot-env: ignore collisions and fix permissions 2015-03-09 17:29:43 +03:00
Nikolay Amiantov
4aba7639c8 chroot-env: build /etc 2015-03-09 17:29:43 +03:00