f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
22 lines
628 B
Nix
22 lines
628 B
Nix
{ stdenv, fetchurl, kernel }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "vhba-${version}";
|
|
version = "20170610";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/cdemu/vhba-module-${version}.tar.bz2";
|
|
sha256 = "1v6r0bgx0a65vlh36b1l2965xybngbpga6rp54k4z74xk0zwjw3r";
|
|
};
|
|
|
|
makeFlags = [ "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" "INSTALL_MOD_PATH=$(out)" ];
|
|
|
|
hardeningDisable = [ "pic" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Provides a Virtual (SCSI) HBA";
|
|
homepage = http://cdemu.sourceforge.net/about/vhba/;
|
|
platforms = platforms.linux;
|
|
licenses = licenses.gpl2Plus;
|
|
};
|
|
}
|