nixexprs/xK-master.nix

115 lines
2.1 KiB
Nix
Raw Normal View History

2023-06-29 02:31:03 +02:00
{ pkgs ? import <nixpkgs> { }
, local ? false
, full ? true
}:
pkgs.stdenv.mkDerivation rec {
pname = "xK";
version = "master";
nativeBuildInputs = with pkgs; [
cmake
pkg-config
perl
2023-07-03 04:41:09 +02:00
] ++ lib.optionals full [
makeWrapper
2023-06-29 02:31:03 +02:00
];
buildInputs = with pkgs; [
openssl
libffi
ncurses
libiconv
] ++ lib.optionals full [
readline
lua5_3
# xB plugins
guile
tcl
perl
ruby
tinycc
python3
2023-06-29 02:31:03 +02:00
] ++ lib.optionals (!full) [
libedit
];
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"
] ++ pkgs.lib.optionals (!full) [
"-DWANT_READLINE=OFF"
"-DWANT_LIBEDIT=ON"
];
2023-07-03 04:41:09 +02:00
xP = pkgs.buildGoModule rec {
pname = "xP";
inherit version src doCheck meta;
modRoot = "./${pname}/";
# vendorHash = pkgs.lib.fakeHash;
vendorHash = "sha256-TK3rivjzYZwG8bfia22iQO5ZKnBzeIidsHNl6jnQUio=";
mithril = pkgs.fetchurl {
url = "https://unpkg.com/mithril@2.2.3/mithril.js";
sha256 = "sha256-136Ow56fShnPfIrUvyjg4oR7tHXyGUkdzThYm+940AY=";
};
# This invokes a premature build that may miss compiler flags.
preBuild = ''
cp ${mithril} public/mithril.js
make
'';
installPhase = ''
runHook preInstall
mkdir -p $out/lib/xP $out/share/xP
mv $GOPATH/bin/xP $out/lib/xP/
cp -r public/ $out/share/xP/
runHook postInstall
'';
};
xS = pkgs.buildGoModule rec {
pname = "xS";
inherit version src doCheck meta;
modRoot = "./${pname}/";
vendorHash = null;
# This invokes a premature build that may miss compiler flags.
preBuild = ''
make
'';
};
# While we can't include them in this derivation, we can link to them.
postInstall = pkgs.lib.optionals full ''
makeWrapper ${xP}/lib/xP/xP $out/bin/xP --chdir ${xP}/share/xP/public
makeWrapper ${xS}/bin/xS $out/bin/xS
'';
2023-06-29 02:31:03 +02:00
doCheck = true;
meta = with pkgs.lib; {
2023-07-03 04:41:09 +02:00
description = "IRC daemon, bot, TUI client"
+ optionals full " and its web frontend";
2023-06-29 02:31:03 +02:00
homepage = "https://git.janouch.name/p/${pname}";
platforms = platforms.all;
license = licenses.bsd0;
};
}