nixpkgs-suyu/pkgs/os-specific/linux/spl/default.nix

76 lines
2.4 KiB
Nix
Raw Normal View History

{ fetchFromGitHub, stdenv, autoreconfHook, coreutils, gawk
, configFile ? "all"
# Kernel dependencies
, kernel ? null
}:
with stdenv.lib;
2017-07-27 19:00:54 +02:00
let
buildKernel = any (n: n == configFile) [ "kernel" "all" ];
buildUser = any (n: n == configFile) [ "user" "all" ];
2017-09-13 01:28:42 +02:00
common = { version
, sha256
, rev ? "spl-${version}"
} @ args : stdenv.mkDerivation rec {
name = "spl-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}";
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "spl";
inherit rev sha256;
};
2017-09-13 01:28:42 +02:00
patches = [ ./const.patch ./install_prefix.patch ];
2012-10-05 18:11:25 +02:00
2017-09-13 01:28:42 +02:00
nativeBuildInputs = [ autoreconfHook ];
2017-09-13 01:28:42 +02:00
hardeningDisable = [ "pic" ];
2017-09-13 01:28:42 +02:00
preConfigure = ''
substituteInPlace ./module/spl/spl-generic.c --replace /usr/bin/hostid hostid
substituteInPlace ./module/spl/spl-generic.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:${gawk}:/bin"
substituteInPlace ./module/splat/splat-vnode.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
substituteInPlace ./module/splat/splat-linux.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
'';
2016-02-07 23:44:42 +01:00
2017-09-13 01:28:42 +02:00
configureFlags = [
"--with-config=${configFile}"
] ++ optionals buildKernel [
"--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source"
"--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
];
2017-09-13 01:28:42 +02:00
enableParallelBuilding = true;
2017-09-13 01:28:42 +02:00
meta = {
description = "Kernel module driver for solaris porting layer (needed by in-kernel zfs)";
2017-09-13 01:28:42 +02:00
longDescription = ''
This kernel module is a porting layer for ZFS to work inside the linux
kernel.
'';
2017-09-13 01:28:42 +02:00
homepage = http://zfsonlinux.org/;
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ jcumming wizeman wkennington fpletz globin ];
};
};
2017-09-13 01:28:42 +02:00
in
assert any (n: n == configFile) [ "kernel" "user" "all" ];
assert buildKernel -> kernel != null;
{
splStable = common {
version = "0.7.1";
sha256 = "0m8qhbdd8n40lbd91s30q4lrw8g169sha0410c8rwk2d5qfaxv9n";
};
splUnstable = common {
version = "2017-09-26";
rev = "e8474f9ad3b3d23c3277535c4f53f8fd1e6cbd74";
sha256 = "1hydfhmngpq31gxkxipqxnin74l760d1ia202h12vsgix9sp32h7";
2017-09-13 01:28:42 +02:00
};
2017-07-27 19:00:54 +02:00
}