nixpkgs/pkgs/misc/emulators/cdemu/vhba.nix
R. RyanTM 794e864a07 linuxPackages.vhba: 20170610 -> 20190302
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/vhba/versions
2019-04-05 15:48:34 +02:00

25 lines
741 B
Nix

{ stdenv, fetchurl, kernel }:
stdenv.mkDerivation rec {
name = "vhba-${version}";
version = "20190302";
src = fetchurl {
url = "mirror://sourceforge/cdemu/vhba-module-${version}.tar.bz2";
sha256 = "0wvxxc064i8czza91gh0dhmh55x2nbs7szzyh4g30w0c98hmc1n5";
};
makeFlags = [ "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" "INSTALL_MOD_PATH=$(out)" ];
nativeBuildInputs = kernel.moduleBuildDependencies;
hardeningDisable = [ "pic" ];
meta = with stdenv.lib; {
description = "Provides a Virtual (SCSI) HBA";
homepage = http://cdemu.sourceforge.net/about/vhba/;
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [ bendlas ];
};
}