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
28 lines
620 B
Nix
28 lines
620 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "libctb";
|
|
version = "0.16";
|
|
src = fetchurl {
|
|
url = "https://iftools.com/download/files/legacy/${pname}-${version}.tar.gz";
|
|
sha256 = "027wh89d0qyly3d9m6rg4x7x1gqz3y3cnxlgk0k8xgygcrm05c0w";
|
|
};
|
|
patches = [
|
|
./include-kbhit.patch
|
|
];
|
|
sourceRoot = "${pname}-${version}/build";
|
|
makeFlags = [
|
|
"prefix=$(out)"
|
|
];
|
|
meta = with lib; {
|
|
description = "Communications toolbox";
|
|
homepage = "https://iftools.com";
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.misuzu ];
|
|
};
|
|
}
|