about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/virtualization/driver/win-pvdrivers/default.nix
blob: 903eb132738ab6a2489b19086575ce4276dcaa71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation {
  pname = "win-pvdrivers";
  version = "unstable-2015-07-01";

  src = fetchFromGitHub {
    owner = "ts468";
    repo = "win-pvdrivers";
    rev = "3054d645fc3ee182bea3e97ff01869f01cc3637a";
    sha256 = "6232ca2b7c9af874abbcb9262faf2c74c819727ed2eb64599c790879df535106";
  };

  buildPhase =
    let unpack = x: "tar xf $src/${x}.tar; mkdir -p x86/${x} amd64/${x}; cp ${x}/x86/* x86/${x}/.; cp ${x}/x64/* amd64/${x}/.";
    in lib.concatStringsSep "\n" (map unpack [ "xenbus" "xeniface" "xenvif" "xennet" "xenvbd" ]);

  installPhase = ''
    mkdir -p $out
    cp -r x86 $out/.
    cp -r amd64 $out/.
  '';

  meta = with lib; {
    description = "Xen Subproject: Windows PV Driver";
    homepage = "http://xenproject.org/downloads/windows-pv-drivers.html";
    maintainers = with maintainers; [ ];
    platforms = platforms.linux;
    license = licenses.bsd3;
  };
}