tigervnc: use tag and hash in fetchFromGitHub

* `sha256` -> `hash`
* `rev` -> `tag`, inspired by
  https://github.com/NixOS/nixpkgs/commit/cb9f9a1e5a51a87d59b373db7016cee1608debd5
This commit is contained in:
Yarny0
2025-05-23 07:15:06 +02:00
parent 43aa4e6982
commit 04f2c64b1d
+2 -2
View File
@@ -32,8 +32,8 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "TigerVNC";
repo = "tigervnc";
rev = "v${version}";
sha256 = "sha256-TgVV/4MRsQHYKpDf9L5eHMLVpdwvNy1KPDIe7xMlQ9o=";
tag = "v${version}";
hash = "sha256-TgVV/4MRsQHYKpDf9L5eHMLVpdwvNy1KPDIe7xMlQ9o=";
};
patches = [