cosmic-settings: replace rec with finalAttrs

This commit is contained in:
Heitor Augusto
2025-03-14 06:00:54 -03:00
parent d9344e9f67
commit b00b9d88ac
+3 -3
View File
@@ -29,14 +29,14 @@ let
in
rustPlatform.buildRustPackage.override
{ stdenv = if withMoldLinker then stdenvAdapters.useMoldLinker stdenv else stdenv; }
rec {
(finalAttrs: {
pname = "cosmic-settings";
version = "1.0.0-alpha.6";
src = fetchFromGitHub {
owner = "pop-os";
repo = "cosmic-settings";
tag = "epoch-${version}";
tag = "epoch-${finalAttrs.version}";
hash = "sha256-UKg3TIpyaqtynk6wLFFPpv69F74hmqfMVPra2+iFbvE=";
};
@@ -105,4 +105,4 @@ rustPlatform.buildRustPackage.override
];
platforms = lib.platforms.linux;
};
}
})