2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, kernel }:
|
2016-08-31 14:00:15 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "vhba";
|
2019-11-24 19:30:30 +00:00
|
|
|
version = "20190831";
|
2016-08-31 14:00:15 +01:00
|
|
|
|
2015-02-10 01:27:04 +00:00
|
|
|
src = fetchurl {
|
2016-02-28 12:07:42 +00:00
|
|
|
url = "mirror://sourceforge/cdemu/vhba-module-${version}.tar.bz2";
|
2019-11-24 19:30:30 +00:00
|
|
|
sha256 = "1ybbk6l06n0y11n5wnfmvdz0baizmq55l458ywimghdyz0n7g0ws";
|
2015-02-10 01:27:04 +00:00
|
|
|
};
|
2016-08-31 14:00:15 +01:00
|
|
|
|
|
|
|
makeFlags = [ "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" "INSTALL_MOD_PATH=$(out)" ];
|
2018-01-19 13:34:26 +00:00
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
2016-08-31 14:00:15 +01:00
|
|
|
|
|
|
|
hardeningDisable = [ "pic" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Provides a Virtual (SCSI) HBA";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://cdemu.sourceforge.net/about/vhba/;
|
2016-08-31 14:00:15 +01:00
|
|
|
platforms = platforms.linux;
|
2017-12-05 22:20:11 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2017-10-14 10:09:00 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ bendlas ];
|
2016-08-31 14:00:15 +01:00
|
|
|
};
|
2015-02-10 01:27:04 +00:00
|
|
|
}
|