idk
Build and populate cache / tests (sydpkgs, nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixpkgs-unstable.tar.gz, sydpkgs) (pull_request) Has been cancelled
Build and populate cache / tests (sydpkgs, nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixpkgs-unstable.tar.gz, sydpkgs) (pull_request) Has been cancelled
This commit is contained in:
+30
-16
@@ -1,28 +1,42 @@
|
|||||||
{ qt5
|
{ qt5
|
||||||
, luajit
|
, breakpointHook
|
||||||
, stdenv
|
, luajit
|
||||||
, fetchFromGitHub
|
, stdenv
|
||||||
, GuiTools ? fetchFromGitHub {
|
, fetchFromGitHub
|
||||||
owner = "rochus-keller";
|
|
||||||
repo = "GuiTools";
|
|
||||||
hash = "df36aa5c823d0c81259ae70b7c6f194c88017d6f";
|
|
||||||
}
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
let
|
||||||
pname = "ljtools";
|
GuiTools-src = fetchFromGitHub {
|
||||||
src = fetchFromGitHub {
|
owner = "rochus-keller";
|
||||||
|
repo = "GuiTools";
|
||||||
|
rev = "df36aa5c823d0c81259ae70b7c6f194c88017d6f";
|
||||||
|
hash = "sha256-RmpVkUjcAkde755QQwfWvC4sOxDLx2itmqw1T1DTOlE=";
|
||||||
|
name = "GuiTools";
|
||||||
|
};
|
||||||
|
LjTools-src = fetchFromGitHub {
|
||||||
owner = "rochus-keller";
|
owner = "rochus-keller";
|
||||||
repo = "LjTools";
|
repo = "LjTools";
|
||||||
hash = "";
|
name = "LjTools";
|
||||||
|
hash = "sha256-PWh1ZP5+hNXvDpJTaWtegHvcuBkdrZ6oA+bIkEikVHk=";
|
||||||
rev = "412675e2cc12bec1e00fd7a2ec52270f388d225b";
|
rev = "412675e2cc12bec1e00fd7a2ec52270f388d225b";
|
||||||
};
|
};
|
||||||
|
luajit-src = luajit.src.override { name = "LuaJIT"; };
|
||||||
|
in stdenv.mkDerivation {
|
||||||
|
pname = "ljtools";
|
||||||
|
version = "0.1.0";
|
||||||
|
srcs = [
|
||||||
|
GuiTools-src
|
||||||
|
LjTools-src
|
||||||
|
luajit-src
|
||||||
|
];
|
||||||
|
sourceRoot = "LjTools";
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
qt5.full
|
qt5.qtbase
|
||||||
luajit
|
|
||||||
];
|
];
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
qt5.full
|
qt5.qtbase
|
||||||
luajit
|
breakpointHook
|
||||||
|
qt5.wrapQtAppsHook
|
||||||
|
qt5.qmake
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user