yeahconsole: modernize

Change to tag and finalAttrs pattern. Noticed while looking for zhf
fixes.

Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>

+3 -3
+3 -3
pkgs/by-name/ye/yeahconsole/package.nix
··· 6 libXrandr, 7 }: 8 9 - stdenv.mkDerivation rec { 10 pname = "yeahconsole"; 11 version = "0.1.3"; 12 13 src = fetchFromGitHub { 14 owner = "jceb"; 15 repo = "yeahconsole"; 16 - rev = "v${version}"; 17 hash = "sha256-Ea6erNF9hEhDHlWLctu1SHFVoXXXsPeWUbvCBSZwn4s="; 18 }; 19 ··· 33 maintainers = with lib.maintainers; [ jceb ]; 34 platforms = lib.platforms.all; 35 }; 36 - }
··· 6 libXrandr, 7 }: 8 9 + stdenv.mkDerivation (finalAttrs: { 10 pname = "yeahconsole"; 11 version = "0.1.3"; 12 13 src = fetchFromGitHub { 14 owner = "jceb"; 15 repo = "yeahconsole"; 16 + tag = "v${finalAttrs.version}"; 17 hash = "sha256-Ea6erNF9hEhDHlWLctu1SHFVoXXXsPeWUbvCBSZwn4s="; 18 }; 19 ··· 33 maintainers = with lib.maintainers; [ jceb ]; 34 platforms = lib.platforms.all; 35 }; 36 + })