sov: replace rec with finalAttrs idiom

This commit is contained in:
éclairevoyant 2023-10-12 22:11:47 -04:00
parent 4b7d8e98bb
commit b448c51cae
No known key found for this signature in database
GPG Key ID: E3813AEAA02DB54B

View File

@ -10,14 +10,14 @@
, wayland-protocols
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "sov";
version = "0.73";
src = fetchFromGitHub {
owner = "milgra";
repo = pname;
rev = version;
repo = "sov";
rev = finalAttrs.version;
sha256 = "sha256-cjbTSvW1fCPl2wZ848XrUPU0bDQ4oXy+D8GqyBMaTwQ=";
};
@ -45,4 +45,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}
})