win-pvdrivers: switch to fetchFromGitHub

main
Sandro Jäckel 3 years ago
parent 692768dadb
commit 6895746097
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 9
      pkgs/applications/virtualization/driver/win-pvdrivers/default.nix

@ -1,11 +1,12 @@
{ lib, stdenv, fetchgit }:
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "win-pvdrivers";
version = "unstable-2015-07-01";
src = fetchgit {
url = "https://github.com/ts468/win-pvdrivers";
src = fetchFromGitHub {
owner = "ts468";
repo = "win-pvdrivers";
rev = "3054d645fc3ee182bea3e97ff01869f01cc3637a";
sha256 = "6232ca2b7c9af874abbcb9262faf2c74c819727ed2eb64599c790879df535106";
};
@ -23,7 +24,7 @@ stdenv.mkDerivation {
meta = with lib; {
description = "Xen Subproject: Windows PV Driver";
homepage = "http://xenproject.org/downloads/windows-pv-drivers.html";
maintainers = [ maintainers.tstrobel ];
maintainers = with maintainers; [ tstrobel ];
platforms = platforms.linux;
license = licenses.bsd3;
};

Loading…
Cancel
Save