Unverified Commit bf83d0f8 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

yeahconsole: fix platforms, modernize (#404539)

parents 329c5657 3533cf2e
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -6,14 +6,14 @@
  libXrandr,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "yeahconsole";
  version = "0.1.3";

  src = fetchFromGitHub {
    owner = "jceb";
    repo = "yeahconsole";
    rev = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-Ea6erNF9hEhDHlWLctu1SHFVoXXXsPeWUbvCBSZwn4s=";
  };

@@ -32,5 +32,6 @@ stdenv.mkDerivation rec {
    license = lib.licenses.gpl2Only;
    maintainers = with lib.maintainers; [ jceb ];
    platforms = lib.platforms.all;
    broken = stdenv.hostPlatform.isDarwin;
  };
}
})