Files
nixpkgs/pkgs/by-name/ra/ratox/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
864 B
Nix

{
lib,
stdenv,
fetchgit,
libtoxcore,
conf ? null,
}:
let
configFile = lib.optionalString (conf != null) (builtins.toFile "config.h" conf);
in
stdenv.mkDerivation {
pname = "ratox";
version = "0.4.20180303";
src = fetchgit {
url = "git://git.2f30.org/ratox.git";
rev = "269f7f97fb374a8f9c0b82195c21de15b81ddbbb";
sha256 = "0bpn37h8jvsqd66fkba8ky42nydc8acawa5x31yxqlxc8mc66k74";
};
buildInputs = [ libtoxcore ];
preConfigure = ''
substituteInPlace config.mk \
--replace '-lsodium -lopus -lvpx ' ""
${lib.optionalString (conf != null) "cp ${configFile} config.def.h"}
'';
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "FIFO based tox client";
mainProgram = "ratox";
homepage = "http://ratox.2f30.org/";
license = licenses.isc;
platforms = platforms.linux;
};
}