2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, kernel }:
|
2016-08-31 15:00:15 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "vhba";
|
2021-10-28 04:13:04 +02:00
|
|
|
version = "20211023";
|
2016-08-31 15:00:15 +02:00
|
|
|
|
2015-02-10 02:27:04 +01:00
|
|
|
src = fetchurl {
|
2021-08-30 14:37:56 +02:00
|
|
|
url = "mirror://sourceforge/cdemu/vhba-module-${version}.tar.xz";
|
2021-10-28 04:13:04 +02:00
|
|
|
sha256 = "sha256-YAh7qqkozvoG1WhHBv7z1IcSrP75LLMq/FB6sZrevxA=";
|
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
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-08-31 15:00:15 +02:00
|
|
|
description = "Provides a Virtual (SCSI) HBA";
|
2021-08-30 14:37:56 +02:00
|
|
|
homepage = "https://cdemu.sourceforge.io/about/vhba/";
|
2016-08-31 15:00:15 +02:00
|
|
|
platforms = platforms.linux;
|
2017-12-05 23:20:11 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2021-01-15 14:21:58 +01:00
|
|
|
maintainers = with lib.maintainers; [ bendlas ];
|
2016-08-31 15:00:15 +02:00
|
|
|
};
|
2015-02-10 02:27:04 +01:00
|
|
|
}
|