summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel-headers
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-23 14:27:34 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-23 14:27:34 +0000
commit84dd812f33d338d0050fdde146deb363e2121478 (patch)
tree5e6fcd8af3b057b1eabaff5ebb8f0e83961d3e4c /pkgs/os-specific/linux/kernel-headers
parent03a243a5e1dd07f15a206464dd218b544a0778aa (diff)
downloadnixlib-84dd812f33d338d0050fdde146deb363e2121478.tar
nixlib-84dd812f33d338d0050fdde146deb363e2121478.tar.gz
nixlib-84dd812f33d338d0050fdde146deb363e2121478.tar.bz2
nixlib-84dd812f33d338d0050fdde146deb363e2121478.tar.lz
nixlib-84dd812f33d338d0050fdde146deb363e2121478.tar.xz
nixlib-84dd812f33d338d0050fdde146deb363e2121478.tar.zst
nixlib-84dd812f33d338d0050fdde146deb363e2121478.zip
Finally, the new stdenv-linux.
* The statically linked bootstrap tools are now automatically
  reproducable, just do:

  $ nix-build ./make-bootstrap-tools.nix

  The resulting binaries in result/in-nixpkgs go to
  stdenv/linux/bootstrap/<platform>/, and the tarballs in
  result/on-server go to
  https://svn.cs.uu.nl:12443/repos/trace/tarballs/trunk/stdenv-linux/<platform>/<revision>/.
  These are checked out on nix.cs.uu.nl under http://.../dist/tarballs.

* The statically linked libraries all use dietlibc now (except
  patchelf and glibc), so they are much smaller.  This is especially
  nice for the tools in the Nixpkgs tree, since it makes Nixpkgs
  tarballs smaller.

* Use Binutils 2.17 and GCC 4.1.1 for the bootstrap.

* The stdenv is now based on Glibc 2.5.  I hope it works ;-)

svn path=/nixpkgs/trunk/; revision=6803
Diffstat (limited to 'pkgs/os-specific/linux/kernel-headers')
-rw-r--r--pkgs/os-specific/linux/kernel-headers/kernel-headers-2.6.18.1.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/kernel-headers/kernel-headers-2.6.18.1.nix b/pkgs/os-specific/linux/kernel-headers/kernel-headers-2.6.18.1.nix
new file mode 100644
index 000000000000..73311a409208
--- /dev/null
+++ b/pkgs/os-specific/linux/kernel-headers/kernel-headers-2.6.18.1.nix
@@ -0,0 +1,12 @@
+{stdenv, fetchurl}:
+
+assert stdenv.isLinux;
+
+stdenv.mkDerivation {
+  name = "linux-headers-2.6.18.1";
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = ftp://ftp.nl.kernel.org/pub/linux/kernel/v2.6/linux-2.6.18.1.tar.bz2;
+    md5 = "38f00633b02f07819d17bcd87d03eb3a";
+  };
+}