This commit is contained in:
2026-06-21 01:18:35 -06:00
parent 59d3a471cd
commit 96b884dbeb
2 changed files with 29 additions and 0 deletions
+1
View File
@@ -8,4 +8,5 @@ stdenv.mkDerivation {
inherit (gf-core) version meta;
src = "${gf-core.src}/src/runtime/c";
nativeBuildInputs = [autoreconfHook ];
broken = true;
}
+28
View File
@@ -0,0 +1,28 @@
{ qt5
, luajit
, stdenv
, fetchFromGitHub
, GuiTools ? fetchFromGitHub {
owner = "rochus-keller";
repo = "GuiTools";
hash = "df36aa5c823d0c81259ae70b7c6f194c88017d6f";
}
}:
stdenv.mkDerivation {
pname = "ljtools";
src = fetchFromGitHub {
owner = "rochus-keller";
repo = "LjTools";
hash = "";
rev = "412675e2cc12bec1e00fd7a2ec52270f388d225b";
};
buildInputs = [
qt5.full
luajit
];
nativeBuildInputs = [
qt5.full
luajit
];
}