Unverified Commit e6e38991 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #211107 from helsinki-systems/upd/win-virtio

win-virtio: 0.1.196-1 -> 0.1.229-1
parents 60c84c88 0e6443b4
Loading
Loading
Loading
Loading
+17 −26
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, p7zip }:
{ lib, stdenv, fetchurl, libarchive }:
stdenv.mkDerivation rec {
  pname = "win-virtio";
  version = "0.1.196-1";

  dontUnpack = true;
  version = "0.1.229-1";

  src = fetchurl {
    url = "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-${version}/virtio-win.iso";
    sha256 = "1zj53xybygps66m3v5kzi61vqy987zp6bfgk0qin9pja68qq75vx";
    hash = "sha256-yIoN3jRgXq7mz4ifPioMKvPK65G130WhJcpPcBrLu+A=";
  };

  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";}
  nativeBuildInputs = [
    libarchive
  ];
    in ''

  unpackCmd = "mkdir source; bsdtar -xf $curSrc -C source";

  installPhase = ''
    runHook preInstall
      ${lib.concatStringsSep "\n" ((map (copy "amd64" "w10") virtio) ++ (map (copy "x86" "w10") virtio))}

    mkdir -p $out
    cp -R ./. $out/

    runHook postInstall
  '';

  meta = with lib; {
    description = "Windows VirtIO Drivers";
    homepage = "https://fedoraproject.org/wiki/Windows_Virtio_Drivers";
    homepage = "https://docs.fedoraproject.org/en-US/quick-docs/creating-windows-virtual-machines-using-virtio-drivers/index.html";
    license = [ licenses.bsd3 ];
    maintainers = [ ];
    platforms = platforms.linux;