We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 329c565 + 3533cf2 commit bf83d0fCopy full SHA for bf83d0f
pkgs/by-name/ye/yeahconsole/package.nix
@@ -6,14 +6,14 @@
6
libXrandr,
7
}:
8
9
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
10
pname = "yeahconsole";
11
version = "0.1.3";
12
13
src = fetchFromGitHub {
14
owner = "jceb";
15
repo = "yeahconsole";
16
- rev = "v${version}";
+ tag = "v${finalAttrs.version}";
17
hash = "sha256-Ea6erNF9hEhDHlWLctu1SHFVoXXXsPeWUbvCBSZwn4s=";
18
};
19
@@ -32,5 +32,6 @@ stdenv.mkDerivation rec {
32
license = lib.licenses.gpl2Only;
33
maintainers = with lib.maintainers; [ jceb ];
34
platforms = lib.platforms.all;
35
+ broken = stdenv.hostPlatform.isDarwin;
36
-}
37
+})
0 commit comments