nixexprs/logdiag-master.nix

72 lines
1.2 KiB
Nix

{ pkgs ? import <nixpkgs> { }
, local ? false
, full ? true
}:
pkgs.stdenv.mkDerivation rec {
pname = "logdiag";
version = "master";
nativeBuildInputs = with pkgs; [
cmake
pkg-config
wrapGAppsHook
];
buildInputs = with pkgs; [
gtk3
json-glib
lua5_2
# To address pkg-config warnings, all the way down.
libthai
pcre2
libdatrie
libepoxy
] ++ lib.optionals (!stdenv.isDarwin) [
libxkbcommon
xorg.libXdmcp
xorg.libXtst
] ++ lib.optionals stdenv.isLinux [
util-linux
libselinux
libsepol
pcre
];
nativeCheckInputs = with pkgs; lib.optionals (!stdenv.isDarwin) [
xvfb-run
];
src = if local then
builtins.path {
path = ../${pname}/git;
name = "${pname}";
}
else
fetchGit {
url = "https://git.janouch.name/p/${pname}.git";
submodules = true;
ref = "master";
};
cmakeFlags = [
"-DBUILD_TESTING=ON"
];
doCheck = true;
checkPhase = with pkgs; ''
runHook preCheck
${lib.optionalString (!stdenv.isDarwin) "xvfb-run"} \
ctest --force-new-ctest-process
runHook postCheck
'';
meta = with pkgs.lib; {
description = "Schematic editor";
homepage = "https://git.janouch.name/p/${pname}";
platforms = platforms.all;
license = licenses.bsd0;
};
}