about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/virtualization/driver/win-signed-gplpv-drivers/default.nix
blob: 7a5cd39a1840236b65c209c8d6fad63b4a522b5a (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ lib, stdenv, fetchurl, p7zip }:

let
  src_x86 = fetchurl {
    url = "http://apt.univention.de/download/addons/gplpv-drivers/gplpv_Vista2008x32_signed_0.11.0.373.msi";
    sha256 = "04r11xw8ikjmcdhrsk878c86g0d0pvras5arsas3zs6dhgjykqap";
  };

  src_amd64 = fetchurl {
    url = "http://apt.univention.de/download/addons/gplpv-drivers/gplpv_Vista2008x64_signed_0.11.0.373.msi";
    sha256 = "00k628mg9b039p8lmg2l9n81dr15svy70p3m6xmq6f0frmci38ph";
  };
in

stdenv.mkDerivation {
  pname = "gplpv";
  version = "0.11.0.373";

  dontUnpack = true;

  buildPhase = ''
    mkdir -p x86
    (cd x86; ${p7zip}/bin/7z e ${src_x86})
    mkdir -p amd64
    (cd amd64; ${p7zip}/bin/7z e ${src_amd64})
  '';

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

  meta = with lib; {
    description = ''
      A collection of open source Window PV drivers that allow
      Windows to be para-virtualized.
      The drivers are signed by Univention with a Software Publishers
      Certificate obtained from the VeriSign CA.
    '';
    homepage = "http://wiki.univention.de/index.php?title=Installing-signed-GPLPV-drivers";
    maintainers = [ ];
    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
    platforms = platforms.linux;
    license = licenses.gpl2;
  };
  }