2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchurl, kernel }:
|
2016-08-31 15:00:15 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-10 02:27:04 +01:00
|
|
|
name = "vhba-${version}";
|
2019-05-03 01:48:13 +02:00
|
|
|
version = "20190410";
|
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-05-03 01:48:13 +02:00
|
|
|
sha256 = "1513hq130raxp9z5grj54cwfjfxj05apipxg425j0zicii59a60c";
|
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";
|
2017-08-01 22:03:30 +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
|
|
|
}
|