hyprgraphics: 0.1.1 -> 0.1.2

add passthru update script
This commit is contained in:
John Titor
2025-03-03 13:27:01 +05:30
committed by Masum Reza
parent 7948ce986f
commit 66f9dc732e
+9 -4
View File
@@ -1,7 +1,8 @@
{
lib,
gcc14Stdenv,
stdenv,
fetchFromGitHub,
nix-update-script,
cmake,
pkg-config,
cairo,
@@ -14,15 +15,15 @@
pixman,
}:
gcc14Stdenv.mkDerivation (finalAttrs: {
stdenv.mkDerivation (finalAttrs: {
pname = "hyprgraphics";
version = "0.1.1";
version = "0.1.2";
src = fetchFromGitHub {
owner = "hyprwm";
repo = "hyprgraphics";
tag = "v${finalAttrs.version}";
hash = "sha256-FFLJzFTyNhS7tBEEECx0B8Ye/bpmxhFVEKlECgMLc6c=";
hash = "sha256-U62Fo0w+aIXBAsSSYsfDsoe3YmoxWMArJ7pN2HNOAqo=";
};
nativeBuildInputs = [
@@ -48,6 +49,10 @@ gcc14Stdenv.mkDerivation (finalAttrs: {
doCheck = true;
passthru = {
updateScript = nix-update-script {};
};
meta = {
homepage = "https://github.com/hyprwm/hyprgraphics";
description = "Cpp graphics library for Hypr* ecosystem";