lol

yeahconsole: fix platforms, modernize (#404539)

authored by

Aleksana and committed by
GitHub
bf83d0f8 329c5657

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