ce8ce600ae
unix-tools.nix has a collection of tools that are commonly installed by default in Unix derivatives. This is intended to provide compatibility between macOS and Linux users. Three Linux-only derivations are provided for compatbility: - procps - utillinux - nettools More tools are also provided. Also: treewide: use unixtools Non-comprehensive replace of Linux-only procps and util-linux with 'unixtools'.
43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
{ stdenv, fetchurl, fetchgit, cmake, libuuid, expat, sqlite, libidn,
|
|
libiconv, botan2, systemd, pkgconfig, udns, pandoc, coreutils } :
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "biboumi-${version}";
|
|
version = "7.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.louiz.org/biboumi/snapshot/biboumi-${version}.tar.xz";
|
|
sha256 = "0gyr2lp2imrjm5hvijcq0s7k9fzkirfl70cprjy9r4yvq6mg1jvd";
|
|
};
|
|
|
|
louiz_catch = fetchgit {
|
|
url = https://lab.louiz.org/louiz/Catch.git;
|
|
rev = "35f510545d55a831372d3113747bf1314ff4f2ef";
|
|
sha256 = "1l5b32sgr9zc2hlfr445hwwxv18sh3cn5q1xmvf588z6jyf88g2g";
|
|
};
|
|
|
|
patches = [ ./catch.patch ];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig pandoc ];
|
|
buildInputs = [ libuuid expat sqlite libiconv libidn botan2 systemd
|
|
udns ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace CMakeLists.txt --replace /etc/biboumi $out/etc/biboumi
|
|
substituteInPlace unit/biboumi.service.cmake --replace /bin/kill ${coreutils}/bin/kill
|
|
cp $louiz_catch/single_include/catch.hpp tests/
|
|
# echo "policy_directory=$out/etc/biboumi" >> conf/biboumi.cfg
|
|
# TODO include conf/biboumi.cfg as example somewhere
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Modern XMPP IRC gateway";
|
|
platforms = platforms.unix;
|
|
homepage = https://lab.louiz.org/louiz/biboumi;
|
|
license = licenses.zlib;
|
|
maintainers = [ maintainers.woffs ];
|
|
};
|
|
}
|