ovmfvartool: use pname rather than name

This fixes the metadata of the ovmfvartool to include version in name.
This commit is contained in:
Ryan Lahfa
2022-09-02 14:25:10 +02:00
committed by Raito Bezarius
parent 0a5978e317
commit c89c3a5b05
@@ -1,12 +1,12 @@
{ lib, stdenvNoCC, fetchFromGitHub, python3 }:
stdenvNoCC.mkDerivation rec {
name = "ovmfvartool";
pname = "ovmfvartool";
version = "unstable-2021-06-16";
src = fetchFromGitHub {
owner = "hlandau";
repo = name;
repo = pname;
rev = "c4c0c24dce1d201f95dfd69fd7fd9d51ea301377";
hash = "sha256-3OvYAB41apPn1c2YTKBIEITmHSUMQ0oEijY5DhZWWGo=";
};