summary refs log tree commit diff
path: root/pkgs/os-specific/linux/spl
diff options
context:
space:
mode:
authorJack Cummings <jack@mudshark.org>2012-10-05 09:40:26 -0700
committerJack Cummings <jack@mudshark.org>2012-10-05 09:40:26 -0700
commite23bda977de2cbf78240c2c54e07fb9a0830598a (patch)
tree3f7314d14e4c1b279df2f24ba8602f5e68ebed7d /pkgs/os-specific/linux/spl
parente7f3ff803e15e7a65e4bcc0dec300e3b02233cfd (diff)
- removing old spl/zfs versions
Diffstat (limited to 'pkgs/os-specific/linux/spl')
-rw-r--r--pkgs/os-specific/linux/spl/spl-0.6.0.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/os-specific/linux/spl/spl-0.6.0.nix b/pkgs/os-specific/linux/spl/spl-0.6.0.nix
deleted file mode 100644
index c174daad26b54..0000000000000
--- a/pkgs/os-specific/linux/spl/spl-0.6.0.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ stdenv, fetchgit, kernel, linuxHeaders, perl }:
-
-stdenv.mkDerivation {
-  name = "spl-0.6.0-rc4";
-  src = fetchgit {
-    url = git://github.com/behlendorf/spl.git;
-    rev = "dde6b7b137f56894a457";
-    sha256 = "c402517a647de0c22a69588219aa214f96d1cf9d2f8751b99c5a2795898c726b";
-  };
-
-  patches = [ ./install_prefix.patch ./module_prefix.patch ];
-
-  buildInputs = [ perl kernel linuxHeaders ];
-
-  configureFlags = [ "--with-linux=${kernel}/lib/modules/${kernel.version}/build" 
-                     "--with-linux-obj=${kernel}/lib/modules/${kernel.version}/build" ];
-
-  meta = {
-    description = "Kernel module driver for solaris porting layer (needed by in-kernel zfs)";
-    homepage = http://zfsonlinux.org/;
-    license = "CDDL";
-    platforms = stdenv.lib.platforms.linux;
-  };
-}