Merge pull request #189450 from RaitoBezarius/patch-4

ovmfvartool: use pname rather than name
This commit is contained in:
superherointj 2022-09-02 09:28:19 -03:00 committed by GitHub
commit 7c6eac9c88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,12 @@
{ lib, stdenvNoCC, fetchFromGitHub, python3 }: { lib, stdenvNoCC, fetchFromGitHub, python3 }:
stdenvNoCC.mkDerivation rec { stdenvNoCC.mkDerivation rec {
name = "ovmfvartool"; pname = "ovmfvartool";
version = "unstable-2021-06-16"; version = "unstable-2021-06-16";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "hlandau"; owner = "hlandau";
repo = name; repo = pname;
rev = "c4c0c24dce1d201f95dfd69fd7fd9d51ea301377"; rev = "c4c0c24dce1d201f95dfd69fd7fd9d51ea301377";
hash = "sha256-3OvYAB41apPn1c2YTKBIEITmHSUMQ0oEijY5DhZWWGo="; hash = "sha256-3OvYAB41apPn1c2YTKBIEITmHSUMQ0oEijY5DhZWWGo=";
}; };