Merge pull request #104698 from veprbl/pr/yed_mark_broken
yed: mark as broken if jre.gtk3 is not available
This commit is contained in:
commit
d06276eb8d
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper unzip wrapGAppsHook ];
|
nativeBuildInputs = [ makeWrapper unzip wrapGAppsHook ];
|
||||||
# For wrapGAppsHook setup hook
|
# For wrapGAppsHook setup hook
|
||||||
buildInputs = [ jre.gtk3 ];
|
buildInputs = [ (jre.gtk3 or null) ];
|
||||||
|
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
@ -35,5 +35,6 @@ stdenv.mkDerivation rec {
|
|||||||
description = "A powerful desktop application that can be used to quickly and effectively generate high-quality diagrams";
|
description = "A powerful desktop application that can be used to quickly and effectively generate high-quality diagrams";
|
||||||
platforms = jre.meta.platforms;
|
platforms = jre.meta.platforms;
|
||||||
maintainers = with maintainers; [ abbradar ];
|
maintainers = with maintainers; [ abbradar ];
|
||||||
|
broken = !("gtk3" ? jre);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user