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