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