mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 09:31:01 +00:00
23 lines
690 B
Nix
23 lines
690 B
Nix
{ lib, stdenv, fetchurl, kernel }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vhba";
|
|
version = "20210418";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/cdemu/vhba-module-${version}.tar.xz";
|
|
sha256 = "119zgav6caialmf3hr096wkf72l9h76sqc9w5dhx26kj4yp85g8q";
|
|
};
|
|
|
|
makeFlags = [ "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" "INSTALL_MOD_PATH=$(out)" ];
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
|
|
meta = with lib; {
|
|
description = "Provides a Virtual (SCSI) HBA";
|
|
homepage = "https://cdemu.sourceforge.io/about/vhba/";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ bendlas ];
|
|
};
|
|
}
|