4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ 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 {
|
|
name = "gplpv-0.11.0.373";
|
|
version = "0.11.0.373";
|
|
|
|
phases = [ "buildPhase" "installPhase" ];
|
|
|
|
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 = [ maintainers.tstrobel ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|