Skip to content

Commit bf83d0f

Browse files
authored
yeahconsole: fix platforms, modernize (#404539)
2 parents 329c565 + 3533cf2 commit bf83d0f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pkgs/by-name/ye/yeahconsole/package.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
libXrandr,
77
}:
88

9-
stdenv.mkDerivation rec {
9+
stdenv.mkDerivation (finalAttrs: {
1010
pname = "yeahconsole";
1111
version = "0.1.3";
1212

1313
src = fetchFromGitHub {
1414
owner = "jceb";
1515
repo = "yeahconsole";
16-
rev = "v${version}";
16+
tag = "v${finalAttrs.version}";
1717
hash = "sha256-Ea6erNF9hEhDHlWLctu1SHFVoXXXsPeWUbvCBSZwn4s=";
1818
};
1919

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

0 commit comments

Comments
 (0)