tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
win-pvdrivers: switch to fetchFromGitHub
Sandro Jäckel
4 years ago
68957460
692768da
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
virtualization
driver
win-pvdrivers
default.nix
+5
-4
pkgs/applications/virtualization/driver/win-pvdrivers/default.nix
···
1
1
-
{ lib, stdenv, fetchgit }:
1
1
+
{ lib, stdenv, fetchFromGitHub }:
2
2
3
3
stdenv.mkDerivation {
4
4
pname = "win-pvdrivers";
5
5
version = "unstable-2015-07-01";
6
6
7
7
-
src = fetchgit {
8
8
-
url = "https://github.com/ts468/win-pvdrivers";
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "ts468";
9
9
+
repo = "win-pvdrivers";
9
10
rev = "3054d645fc3ee182bea3e97ff01869f01cc3637a";
10
11
sha256 = "6232ca2b7c9af874abbcb9262faf2c74c819727ed2eb64599c790879df535106";
11
12
};
···
23
24
meta = with lib; {
24
25
description = "Xen Subproject: Windows PV Driver";
25
26
homepage = "http://xenproject.org/downloads/windows-pv-drivers.html";
26
26
-
maintainers = [ maintainers.tstrobel ];
27
27
+
maintainers = with maintainers; [ tstrobel ];
27
28
platforms = platforms.linux;
28
29
license = licenses.bsd3;
29
30
};