mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
32 lines
936 B
Nix
32 lines
936 B
Nix
{ 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; [ tstrobel ];
|
|
platforms = platforms.linux;
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|