mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, p7zip }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "win-virtio";
|
|
version = "0.1.196-1";
|
|
|
|
dontUnpack = true;
|
|
|
|
src = fetchurl {
|
|
url = "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-${version}/virtio-win.iso";
|
|
sha256 = "1zj53xybygps66m3v5kzi61vqy987zp6bfgk0qin9pja68qq75vx";
|
|
};
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
${p7zip}/bin/7z x $src
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase =
|
|
let
|
|
copy = arch: version: {input, output}: "mkdir -p $out/${arch}/${output}; cp ${input}/${version}/${arch}/* $out/${arch}/${output}/.";
|
|
virtio = [{input="Balloon"; output="vioballoon";}
|
|
{input="NetKVM"; output="vionet";}
|
|
{input="vioscsi"; output="vioscsi";}
|
|
{input="vioserial"; output="vioserial";}
|
|
{input="viostor"; output="viostor";}
|
|
{input="viorng"; output="viorng";}
|
|
];
|
|
in ''
|
|
runHook preInstall
|
|
${lib.concatStringsSep "\n" ((map (copy "amd64" "w10") virtio) ++ (map (copy "x86" "w10") virtio))}
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Windows VirtIO Drivers";
|
|
homepage = "https://fedoraproject.org/wiki/Windows_Virtio_Drivers";
|
|
license = [ licenses.bsd3 ];
|
|
maintainers = [ maintainers.tstrobel ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|