yeahconsole: fix platforms, modernize (#404539)

This commit is contained in:
Aleksana 2025-05-14 17:53:17 +08:00 committed by GitHub
commit bf83d0f845
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,14 +6,14 @@
libXrandr, libXrandr,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "yeahconsole"; pname = "yeahconsole";
version = "0.1.3"; version = "0.1.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jceb"; owner = "jceb";
repo = "yeahconsole"; repo = "yeahconsole";
rev = "v${version}"; tag = "v${finalAttrs.version}";
hash = "sha256-Ea6erNF9hEhDHlWLctu1SHFVoXXXsPeWUbvCBSZwn4s="; hash = "sha256-Ea6erNF9hEhDHlWLctu1SHFVoXXXsPeWUbvCBSZwn4s=";
}; };
@ -32,5 +32,6 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl2Only; license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ jceb ]; maintainers = with lib.maintainers; [ jceb ];
platforms = lib.platforms.all; platforms = lib.platforms.all;
broken = stdenv.hostPlatform.isDarwin;
}; };
} })