Commit 0e6443b4 authored by ajs124's avatar ajs124
Browse files

win-virtio: refactor

- don't use p7zip anymore
- just copy everything instead of just some things very elaborately
  there is no clear motivation given for why this was done in 91b85236
parent 3948414c
Loading
Loading
Loading
Loading
+15 −24
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.229-1";

  dontUnpack = true;

  src = fetchurl {
    url = "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-${version}/virtio-win.iso";
    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;