qpwgraph: use finalAttrs

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-10-31 23:29:29 +01:00
parent cde59cc242
commit f1cd50cf22
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951

View File

@ -11,7 +11,7 @@
, pipewire
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "qpwgraph";
version = "0.5.3";
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
domain = "gitlab.freedesktop.org";
owner = "rncbc";
repo = "qpwgraph";
rev = "v${version}";
rev = "v${finalAttrs.version}";
sha256 = "sha256-50KaVpNB5/CTLs2bRbXEinYM23AZxZO/ForrVPFDN8U=";
};
@ -39,4 +39,4 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
maintainers = with maintainers; [ kanashimia exi Scrumplex ];
};
}
})