Peter Simons
f1a30454f6
Merge pull request #1942 from thoughtpolice/fixups
...
Trivial fixes for my packages
2014-03-15 09:35:35 +01:00
Ricardo M. Correia
ceec014020
grsecurity: Update stable and test patches
...
stable: 3.0-3.2.55-201403122114 -> 3.0-3.2.55-201403142107
test: 3.0-3.13.6-201403122116 -> 3.0-3.13.6-201403142112
2014-03-15 04:15:28 +01:00
Ricardo M. Correia
3c97fdc7a8
spl, zfs: Add myself as a maintainer
2014-03-15 02:01:57 +01:00
Shea Levy
602cf8d78c
Merge branch 'u/zfs-import' of git://github.com/wizeman/nixpkgs
...
zfs: Misc fixes
2014-03-14 19:40:34 -04:00
Shea Levy
0c12dd3ded
Merge branch 'pkgs/systemd/journald_http_gateway' of git://github.com/offlinehacker/nixpkgs
...
systemd: python support & journal http gateway
Conflicts:
nixos/modules/misc/ids.nix
2014-03-14 19:16:59 -04:00
Shea Levy
3f6603a80e
Fix alsa-utils
2014-03-14 09:08:04 -04:00
Nixpkgs Monitor
69fff447aa
alsaUtils: update from 1.0.27 to 1.0.27.2
2014-03-14 11:16:56 +01:00
Vladimír Čunát
d6349df0dd
put systemd unit dirs on the right place
...
Also see #1936 .
2014-03-13 21:44:51 +01:00
Vladimír Čunát
344f2e6518
udisks1: bump to fix CVE-2014-0004
...
Also systemd unit is now installed.
Thanks to nixpkgs monitor again, as for all my CVE commits.
2014-03-13 21:16:50 +01:00
Shea Levy
0f72effdd9
The derivation primop doesn't play well with null outputs attribute
2014-03-13 15:05:15 -04:00
Evgeny Egorochkin
0ffbfd38bf
udisks2: update from 2.1.1 to 2.1.3, potentially fixes CVE-2014-0004
2014-03-13 08:59:25 +02:00
Ricardo M. Correia
86b8cf954a
grsecurity: Update stable and test patches
...
stable: 3.0-3.2.55-201403072107 -> 3.0-3.2.55-201403122114
test: 3.0-3.13.6-201403072241 -> 3.0-3.13.6-201403122116
2014-03-13 02:28:58 +01:00
Domen Kozar
059e8e179b
set all licenses to be attributes (and wait for Nix 1.7)
2014-03-12 21:20:43 +01:00
aszlig
c7bac81c66
Merge 'mingw-w64' and 'darwin' into cross-win-osx.
...
Both branches have quite a lot in common, so it's time for a merge and
do the cleanups with respect to both implementations and also generalize
both implementations as much as possible.
This also closes #1876 .
Conflicts:
pkgs/development/interpreters/lua-5/5.2.nix
pkgs/development/libraries/SDL/default.nix
pkgs/development/libraries/glew/default.nix
pkgs/top-level/all-packages.nix
2014-03-12 10:16:51 +01:00
aszlig
a445199db4
xcode: Update to new version 5.1.
...
This version just got released two days ago, while we were working for
cross-builds on 5.0.2. From the release notes it shouldn't introduce any
incompatibilities.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:49 +01:00
aszlig
a6621202af
xcode: Drop use of weak_import on enumerators.
...
GCC doesn't support attributes on enumerators, which could pose a
problem but fortunately not in this case. Here a
__attribute__((weak_import)) is used, which doesn't make much sense for
enumerators anyway (noone will die because the corresponding enumerator
won't be referenced either in older OS X versions).
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:49 +01:00
aszlig
3940b21988
cctools-port: Pass through wrapped XCToolchain.
...
At the moment, this includes only dyldinfo, dwarfdump and dsymutil, but
we'll see whether we need more of these utilities later.
Tho reason those are wrapped in cctools-port is because it is the
binutils used to cross-compile for Mac OS X.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:46 +01:00
aszlig
45cd9994bc
darwin: Add new package maloader.
...
This is the mentioned Mach-O loader that we're yoing to use to execute
Apple's proprietary binaries.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:45 +01:00
aszlig
53a267e535
darwin: Add new package opencflite.
...
This provides a port of Mac OS X's CoreFoundation and is needed if we
want to be able to run dsymutil using maloader.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:45 +01:00
aszlig
c0d55fcc6a
xcode: Provide the commandline toolchain as well.
...
This toolchain contains Mach-O binaries and might not be useful in the
first place, but there are programs like dsymutil, where Apple didn't
release the source code, so we need a Mach-O loader...
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:45 +01:00
aszlig
dd10bb3181
Add a cross-platform port of cctools.
...
This basically is binutils for Mac OS X, but ported to work on
(GNU/)Linux and FreeBSD.
And it's up-to-date as well! I'm mentioning this, because it was quite
hard to find a recent port of it and I just accidentally stumbled on it
while trying to do the port by myself.
So thanks to @tpoechtrager for doing this.
Also, I've added two more patches, which essentially are:
* ld-rpath-nonfinal:
This allows -rpath to be used for linking non-final builds, which
was allowed for earlier versions of cctools and got a check for
that in more recent versions.
* ld-ignore-rpath-link:
Ignores the -rpath-link option, because the cross-wrapper uses it
in different places. Unfortunately, the cctools linker doesn't
support it, so we might need to implement this later if it's
possible (I'm not a Mach-O man^H^H^Hexpert).
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:44 +01:00
aszlig
83dd414ca2
Add new package for Apple's XCode.
...
This package provides the SDK and standard library needed for
cross-compiling to Mac US X. We're using xpwn here to extract the DMG.
Also, this version (XCode 5.0.2) only contains the SDKs for version 10.9
and 10.8, so we might need to add requireFile directives for older
versions as well.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:43 +01:00
Peter Simons
24d0e07a47
wpa_supplicant: cosmetic to un-break syntax highlighting
2014-03-11 12:34:48 +01:00
Peter Simons
813533f49a
wpa_supplicant: cherry-pick future patch that disable strict SSL certificate checks
...
Close #1913 .
2014-03-11 12:34:33 +01:00
Ricardo M. Correia
d999872b8d
grsecurity: Update stable and test patches
...
stable: 3.0-3.2.55-201403022154 -> 3.0-3.2.55-201403072107
test: 3.0-3.13.5-201403031445 -> 3.0-3.13.6-201403072241
2014-03-10 17:23:17 +01:00
Ricardo M. Correia
9b650b074b
linux: Update to 3.13.6
2014-03-10 17:23:17 +01:00
Bjørn Forsman
8d18d58f91
can-utils: new package
...
CAN userspace utilities and tools (for use with Linux SocketCAN).
There is no real "homepage" for this project (the only thing I could
find was the gitorious page) and they haven't produced any proper
releases (source archives and/or git tags), even though git history goes
back to 2006 and things seem stable.
2014-03-09 14:19:39 +01:00
Peter Simons
c9f64fb8ba
lxc: update from 1.0.0 to 1.0.1
2014-03-08 12:47:18 +01:00
Austin Seipp
fb055c10f6
Make my packages slightly more consistent.
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-07 20:27:02 -06:00
Rob Vermaas
7047235acb
Now properly add nvidiabl.
2014-03-07 16:08:38 +01:00
Domen Kožar
339651b855
Merge pull request #1817 from wkennington/cache.wpasupplicant
...
wpa_supplicant: Update 2.0 -> 2.1
2014-03-07 13:20:39 +01:00
Ricardo M. Correia
a7e65a8a95
zfs: Fix compilation on 3.13 and later kernels
2014-03-04 12:58:59 +01:00
Ricardo M. Correia
c5b3257388
spl: Fix compilation on 3.13 and later kernels
2014-03-04 12:58:55 +01:00
Ricardo M. Correia
17073197e9
spl: Fix compilation on 3.12 and later kernels
2014-03-04 12:58:39 +01:00
Ricardo M. Correia
d01242edb8
zfs: Fix minor filesystem corruption with gcc 4.8
...
It turns out that some of gcc 4.8's aggressive optimizations may
cause minor filesystem corruption in ZFS. To fix it, a patch was
cherry-picked from the upstream's git tree.
See: https://github.com/zfsonlinux/zfs/pull/2051
2014-03-04 12:58:11 +01:00
Ricardo M. Correia
e0fe5e7c38
zfs: Fix libblkid detection (backport from upstream)
...
This fixes issues with importing ZFS pools, such as when the ZFS device is a
partition that covers the end of the disk.
See: https://github.com/zfsonlinux/zfs/issues/1684
2014-03-04 12:58:11 +01:00
Moritz Ulrich
5d05dde655
ldm: Use meta.repositories.git.
...
Improves reliability of nixpkgs-monitor.
2014-03-04 12:44:15 +01:00
Austin Seipp
c4d5757e29
grsecurity updates
...
- stable: 3.0-3.2.55-201402241936 -> 3.0-3.2.55-201403022154
- testing: 3.0-3.13.5-201402241943 -> 3.0-3.13.5-201403031445
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-04 01:13:22 +01:00
Corey O'Connor
19c59ab984
upgrade bbswitch to 0.8
2014-03-04 01:05:12 +01:00
aszlig
c6cb3276dd
windows/cygwin-setup: Drop meta.platforms attr.
...
This prevents cross-builds, so let's drop it for now.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-04 00:52:39 +01:00
aszlig
1771e07e20
os-specific/windows: Add new package cygwinSetup.
...
This is primarily going to be used for vmTools.runInWindowsVM, but in
theory, it could also work with Nix on CygWin which I haven't tested.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-03 23:18:33 +01:00
aszlig
e64b342fa8
Use mingw-w64 for 32bit Windows builds as well.
...
Mingw(32) is rather poorly maintaned and has quite a lot of bugs. And
because our Windows cross builds were also poorly maintained and most of
the cross-tests were broken as well, I'm just taking this step and try
to switch to mingw-w64 for everything "cross Windows".
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-03 22:38:48 +01:00
mornfall
528b600ec6
Merge pull request #1867 from thoughtpolice/fixes
...
Some minor fixes for my packages - ktap, cb0cat, etc
2014-03-03 20:36:08 +01:00
William A. Kennington III
a19cf91652
wpa_supplicant: Update 2.0 -> 2.1
2014-03-03 10:26:04 -06:00
Peter Simons
f9af98f1fd
ipsecTools: update from 0.8.1 to 0.8.2
2014-03-03 11:10:24 +01:00
Ricardo M. Correia
69a83ba99f
grsecurity: Update stable and test patches
...
stable: 3.0-3.2.55-201402221305 -> 3.0-3.2.55-201402241936
test: 3.0-3.13.4-201402221308 -> 3.0-3.13.5-201402241943
2014-03-03 02:16:58 +01:00
Ricardo M. Correia
8109de905a
linux: Update to 3.13.5
2014-03-03 02:16:50 +01:00
Austin Seipp
812d17f177
ktap: don't use FFI by default
...
It's not yet supported on i386 - instead, make it optional and
controlled by a `useFFI` attribute.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-02 06:16:56 -06:00
Austin Seipp
73bcce319b
ktap: Update to 0.5-e7a38ef0
...
This adds a new, useful net library as well.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-02 05:52:36 -06:00
Austin Seipp
6a88b95ac7
checksec: add homepage
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-02 05:51:49 -06:00
Ricardo M. Correia
84011efb74
paxctl: Use http instead of https
...
This is needed since paxctl is going to be added to stdenv but
early stdenv curl does not support https.
2014-02-28 00:15:55 +01:00
mornfall
5fe6abc099
Merge pull request #1824 from thoughtpolice/ktap
...
ktap: add v0.5-dev from git
2014-02-27 19:48:29 +01:00
mornfall
2d9492b14d
Merge pull request #1793 from thoughtpolice/reptyr
...
reptyr: version 0.5
2014-02-27 19:47:19 +01:00
Evgeny Egorochkin
05c19ced9b
linuxPackages_3_12.perf: update from 3.12.12 to 3.12.13
2014-02-26 20:49:27 +02:00
Peter Simons
2dc6bcbc40
libselinux: update from 2.2.1 to 2.2.2
2014-02-24 22:04:40 +01:00
Peter Simons
9f714fbafa
iw: update from 3.11 to 3.14
2014-02-24 22:04:40 +01:00
Peter Simons
01aaf816c9
acpid: update from 2.0.20 to 2.0.21
2014-02-24 22:04:40 +01:00
Peter Simons
abca8f64f2
lxc: update from 1.0.0.beta4 to 1.0.0
2014-02-24 21:17:55 +01:00
aszlig
44cfba7950
mingw-w64-pthreads: Create based on mingw-w64.
...
The winpthreads library is part of the same source package, so let's
just override the name and the source directory.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-24 07:26:24 +01:00
aszlig
4fde72c7d6
mingw-w64: Fix typo in preConfigure hook.
...
D'oh, no wonder the headers are of almost the same size as the main
package.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-24 07:26:23 +01:00
aszlig
a78c6490d7
mingw-w64: Update to new upstream version 3.1.0.
...
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-24 07:26:22 +01:00
Austin Seipp
60728bc46c
ktap: add v0.5-dev from git
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-23 22:29:56 -06:00
Austin Seipp
7f4b97d495
grsecurity: stable/testing updates
...
- stable: 3.0-3.2.55-201402201903 -> 3.0-3.2.55-201402221305
- testing: 3.0-3.13.4-201402201908 -> 3.0-3.13.4-201402221308
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-22 20:29:25 +01:00
Ricardo M. Correia
6554a490f6
gradm, pax-utils, paxctl: Add myself as a maintainer
2014-02-22 20:17:00 +01:00
Ricardo M. Correia
4ee12df331
pax-utils: Fix URL
2014-02-22 19:25:33 +01:00
Ricardo M. Correia
bf02ae28d6
gradm: Fix URL
2014-02-22 19:25:33 +01:00
Ricardo M. Correia
1b60ee5f67
paxctl: Fix URL
2014-02-22 19:17:53 +01:00
Ricardo Correia
39fbd8f4fb
Merge pull request #1771 from thoughtpolice/grsec-tools
...
grsecurity: add gradm, paxctl, and pax-utils (take #2 )
2014-02-22 18:14:57 +01:00
Vladimír Čunát
351f704091
Merge x-updates into master
...
There's a major dbus bump (1.6 -> 1.8), and various minor fixes and updates.
2014-02-22 11:28:51 +01:00
Austin Seipp
4631a65c43
grsecurity: add pax-utils-0.7
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:17:56 -06:00
Austin Seipp
c2e4ccd4ad
grsecurity: add paxctl-0.7
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:17:53 -06:00
Austin Seipp
f1459cd4b0
grsecurity: add gradm-3.0-201401291757
...
This also ensures the appropriate udev rules are installed.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:14:11 -06:00
Ricardo Correia
308015e213
Merge pull request #1801 from thoughtpolice/kernel-grsec
...
kernel: stable updates, grsecurity patch updates
2014-02-21 19:23:49 +01:00
Domen Kožar
368839c703
Merge pull request #1467 from iElectric/buildPythonPackage-refactor
...
buildPythonPackage refactoring
2014-02-21 18:33:48 +01:00
Domen Kožar
f1db57f1fe
buildPythonPackage: fix more borken packages
2014-02-21 18:29:57 +01:00
Austin Seipp
18f65f3640
grsecurity: stable/testing updates
...
- stable: 3.0-3.2.55-201402192249 -> 3.0-3.2.55-201402201903
- testing: 3.0-3.13.3-201402192252 -> 3.0-3.13.4-201402201908
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 20:21:16 -06:00
Austin Seipp
a1dc5ea707
kernel: stable updates
...
- 3.13 stable: 3.13.3 -> 3.13.4
- 3.12 stable: 3.12.11 -> 3.12.12
- 3.10 longterm: 3.10.30 -> 3.10.31
- 3.4 longterm: 3.4.80 -> 3.4.81
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 20:21:11 -06:00
Vladimír Čunát
ae5d8f6768
Merge master into x-updates
2014-02-20 20:55:31 +01:00
Ricardo Correia
1c645521bd
Merge pull request #1796 from thoughtpolice/grsec
...
grsecurity: stable/testing updates
2014-02-20 14:18:29 +01:00
Rob Vermaas
cf00cd5e36
Add support for printing qr code for google-authenticator.
2014-02-20 12:30:49 +01:00
Austin Seipp
58e08a1a4f
grsecurity: stable/testing updates
...
- stable: 3.0-3.2.55-201402152203 -> 3.0-3.2.55-201402192249
- testing: 3.0-3.13.3-201402152204 -> 3.0-3.13.3-201402192252
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 04:53:19 -06:00
Austin Seipp
7411fabd3e
checksec: version 1.5
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 04:26:17 -06:00
Austin Seipp
e43130d379
reptyr: version 0.5
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-19 15:05:36 -06:00
Austin Seipp
c137015328
grsecurity updates.
...
- stable: 3.0-3.2.54-201402062221 -> 3.0-3.2.55-201402152203
- testing: 3.0-3.13.3-201402132113 -> 3.0-3.13.3-201402152204
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-17 07:27:51 -06:00
Austin Seipp
8e349e721c
linux: 3.2.54 -> 3.2.55
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-17 07:27:51 -06:00
William A. Kennington III
52248aa7a2
kernel: 3.12.10 -> 3.12.11 ( close #1743 )
2014-02-16 14:20:09 +01:00
Vladimír Čunát
96f07fa74e
Merge master into x-updates
2014-02-16 11:45:02 +01:00
Vladimír Čunát
57240400cb
nvidia driver: allow building on Hydra, maintain
...
The stuff is unfree, but distribution in any form *is* encouraged, c.f.
http://metadata.ftp-master.debian.org/changelogs//non-free/n/nvidia-graphics-drivers/nvidia-graphics-drivers_319.82-1_copyright
2014-02-16 10:07:31 +01:00
Vladimír Čunát
180e5ca0db
nvidia driver: fix eval with older kernels (e.g. 3.10)
2014-02-16 09:53:15 +01:00
Cillian de Róiste
93f7b77067
xf86_input_wacom: update from 0.20.0 to 0.23.0
2014-02-15 20:45:10 +01:00
William A. Kennington III
bdb842d5eb
Move all db4 packages to the default db5
2014-02-15 12:03:02 +01:00
Evgeny Egorochkin
daa2827b99
grsecurity: update patch
2014-02-14 18:13:05 +02:00
Evgeny Egorochkin
fc213ccfa8
linux_3_13: update from 3.13.2 to 3.13.3
2014-02-14 16:56:38 +02:00
Evgeny Egorochkin
699509db14
linux_3_10: update from 3.10.29 to 3.10.30
2014-02-14 16:55:44 +02:00
Evgeny Egorochkin
ad4e2bd499
linux_3_4: update from 3.4.79 to 3.4.80
2014-02-14 16:55:44 +02:00
Evgeny Egorochkin
69f4bdac6e
linux: add git repository and branch meta
2014-02-14 10:45:36 +02:00
Peter Simons
869402ef22
lxc: update from 1.0.0.beta2 to 1.0.0.beta4
2014-02-13 23:22:16 +01:00
Karn Kallio
b2f9e1d4f7
nvidia-x11: bump version and add patch for kernel 3.13
2014-02-12 11:08:28 +01:00
Vladimír Čunát
dfdf164f87
Merge master into x-updates
...
Conflicts (trivial):
pkgs/games/spring/default.nix
2014-02-10 19:15:58 +01:00
Cillian de Róiste
00b1461e4f
ATI-driver: the hash has changed, reported by: @ikervagyok
2014-02-10 16:42:02 +01:00
Ricardo M. Correia
b31547654d
grsecurity: Update stable and test patches
...
stable: 3.0-3.2.54-201401191012 -> 3.0-3.2.54-201402062221
test: 3.0-3.12.8-201401191015 -> 3.0-3.13.2-201402062224
2014-02-08 16:16:58 +01:00
Ricardo M. Correia
31fa2cd52b
grsecurity: Fix building grsec-3.x.0 kernels
2014-02-08 15:16:40 +00:00
Vladimír Čunát
24029ec478
linux: minor updates 3.12.10, 3.10.29, 3.4.79
2014-02-08 11:54:16 +01:00
Vladimír Čunát
9b69117fec
Merge master into x-updates
2014-02-08 09:12:51 +01:00
Vladimir Still
d3979b659c
perf: Make build fix for 3.13 cleaner.
2014-02-07 22:53:55 +01:00
Vladimir Still
70e4f8f928
perf: Allow proceeding in build even if patch fails.
...
Patching fails for linux 3.13 but it builds OK.
2014-02-07 18:16:24 +01:00
Mathijs Kwik
896ae598d1
Merge pull request #1698 from wkennington/master.kernel
...
kernel: Upgrade from 3.13.1 -> 3.13.2
2014-02-07 06:42:53 +01:00
Corey O'Connor
7a653e5156
add guvcview package
2014-02-07 00:01:40 +00:00
William A. Kennington III
346bfc28ea
kernel: Upgrade from 3.13.1 -> 3.13.2
2014-02-06 16:30:40 -06:00
Jaka Hudoklin
ae9c22df3f
systemd: enable journal http gateway by adding libmicrohttp
2014-02-06 16:18:25 +01:00
Jaka Hudoklin
09dd6a64fc
systemd: add optional python support
2014-02-06 16:18:24 +01:00
Vladimír Čunát
be70104a3a
Merge master into x-updates
...
Conflicts (taken master):
pkgs/development/compilers/llvm/3.4/llvm.nix
2014-02-04 22:00:09 +01:00
Evgeny Egorochkin
832324d5eb
lm_sensors: update from 3.3.4 to 3.3.5
2014-02-04 21:58:25 +02:00
Vladimír Čunát
cbba3f90da
re-merge #1618 : use ubuntu module blacklists by default
...
I'm sorry, previously I merged an outdated reference,
so only the old version of the PR got into master up to now.
2014-02-04 18:02:19 +01:00
Shea Levy
608cee44cc
kmod: bump
...
Signed-off-by: Shea Levy <shea@shealevy.com>
2014-02-03 18:42:04 -05:00
Michael Raskin
ba4461f96f
Fix wvdial build by inserting missing unistd.h includes
2014-02-02 19:21:08 +04:00
Vladimír Čunát
b5a32b3944
Merge #1618 : use ubuntu module blacklists by default
2014-02-02 15:51:07 +01:00
Vladimír Čunát
6e2d3b9847
Merge master into x-updates
2014-02-02 10:05:25 +01:00
Vladimír Čunát
80f8b2cfbd
kmod-blacklist-ubuntu: fix references to binaries
2014-02-02 09:45:59 +01:00
Vladimír Čunát
22690a8cd5
kmod-blacklist-ubuntu: fetch from tar.gz, not bazaar
...
Now the source is just a miniature archive.
2014-02-02 09:41:11 +01:00
William A. Kennington III
f9f065a178
kernel: Upgrade from 3.13.0 -> 3.13.1
2014-01-31 15:28:50 -06:00
Eelco Dolstra
b913a2eb81
linux: Update to 3.4.78
2014-01-31 18:00:13 +01:00
Domen Kožar
aa595f3cf1
Merge pull request #1628 from tomberek/alienfx_libusb
...
Add #include <unisted.h> for sleep and usleep
2014-01-29 08:57:20 -08:00
Petr Rockai
4124bb9ff5
Adopt more packages.
2014-01-28 18:11:00 +01:00
Vladimír Čunát
908ce109f9
Merge master into x-updates (the binutils change)
2014-01-28 18:00:29 +01:00
Petr Rockai
6f5be260b4
Adopt packages.
2014-01-28 17:31:17 +01:00
Vladimír Čunát
5acaa980a5
pull module blacklist from Ubuntu and use it by default
...
People often have serious problems due to bogus modules like *fb.
2014-01-28 12:52:36 +01:00
Vladimír Čunát
9739171cd4
Merge pull request #1567 from wizeman/u/grsec-upd-and-fix
...
grsecurity: Fix build and update patches
2014-01-28 03:41:05 -08:00
Vladimír Čunát
69b4bef3f3
Merge master into x-updates
2014-01-28 02:32:27 +01:00
Eelco Dolstra
1348aa5c42
rfkill: Update to 0.5
2014-01-27 17:58:25 +01:00
Vladimír Čunát
a9caafa0ea
linux kernel updates to 3.4.77, 3.10.28 and 3.12.9
...
I tested they still build on x86_64.
2014-01-26 17:07:31 +01:00
William A. Kennington III
8bc7c9f66d
linux: Update from 3.12.7 -> 3.12.8
2014-01-26 15:48:18 +01:00
William A. Kennington III
c47dc47083
linux: Update from 3.10.25 -> 3.10.27
2014-01-26 15:48:05 +01:00
Domen Kožar
a7d0a53d9e
merge
2014-01-26 09:58:47 +01:00
Vladimír Čunát
5fb366d1e5
xorg: move nouveau driver here, some updates of modules
...
It seems that most of the modules is rarely used, but still.
Some of the updated modules don't build, just as they didn't before.
2014-01-26 09:03:01 +01:00
Domen Kožar
e505c8927d
upower: add gobject introspection
2014-01-26 00:15:05 +01:00
Peter Simons
58f1520726
lxc: update from 1.0.0.beta1 to 1.0.0.beta2
2014-01-25 20:58:49 +01:00
Thomas Bereknyei
c17e6d6968
Add #include <unisted.h> for sleep and usleep
2014-01-25 13:46:48 -05:00
Petr Rockai
28f0ec6540
linux-perf: Fix build (unportable shell hack broke).
2014-01-25 16:30:14 +01:00
Vladimír Čunát
83b354e4f9
linuxHeaders: add meta, incl. platforms = linux;
...
Noted by @mornfall. The built package has ~5 MB uncompressed,
but just the Linux tarball has ~40 MB compressed...
2014-01-25 15:35:52 +01:00
Jaka Hudoklin
e0000f8ad1
ati-drivers: update to 13.12 ( close #1569 )
...
This update is mostly effort from @MarcWeber and @vcunat, now tested on real
hardware making sure it works with multiple GPUs and opencl.
2014-01-23 12:11:28 +01:00
Shea Levy
ca116f76f9
Unmaintain a bunch of packages
...
Trying to take maintainership more seriously...
Signed-off-by: Shea Levy <shea@shealevy.com>
2014-01-21 22:34:41 -05:00
Shea Levy
cb9cc87a39
kernel.passthru: Don't include meta to be consistent with stdenv.mkDerivation
...
Signed-off-by: Shea Levy <shea@shealevy.com>
2014-01-21 21:12:58 -05:00
Shea Levy
fd999ed570
Linux: Set passthru attr to contain full passthru
...
This fixes #1566 , thanks @wizeman
Signed-off-by: Shea Levy <shea@shealevy.com>
2014-01-21 21:06:27 -05:00
Ricardo M. Correia
aeda8d63b9
grsecurity: Update stable and test patches
...
stable: 3.0-3.2.53-201312021727 -> 3.0-3.2.54-201401191012
test: 3.0-3.12.2-201312021733 -> 3.0-3.12.8-201401191015
2014-01-22 02:14:35 +01:00
Shea Levy
d18bc25b95
Rename linuxManualConfig to buildLinux
...
Signed-off-by: Shea Levy <shea@shealevy.com>
2014-01-21 20:05:55 -05:00
Vladimír Čunát
ac6761c908
Merge master into stdenv-updates
...
Conflicts:
pkgs/applications/version-management/gource/default.nix
pkgs/top-level/all-packages.nix
2014-01-20 19:39:28 +01:00
Shea Levy
3ae5e801a5
Linux 3.13
...
Signed-off-by: Shea Levy <shea@shealevy.com>
2014-01-19 22:35:24 -05:00
Ricardo M. Correia
84f35a7cc1
libaio: Fix download URL
2014-01-18 15:24:42 +00:00
Vladimír Čunát
0a58b512cb
Merge master into stdenv-updates
...
Conflicts (simple):
pkgs/development/compilers/gcc/4.8/default.nix
pkgs/development/compilers/llvm/default.nix
pkgs/development/libraries/gmp/5.1.1.nix
pkgs/development/libraries/gmp/5.1.3.nix
pkgs/development/libraries/gmp/5.1.x.nix
pkgs/top-level/all-packages.nix
2014-01-18 14:46:20 +01:00