17 stdenv.mkDerivation rec {
18 pname = "frr-clippy-helper";
33 ] ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform elfutils) [
38 "--enable-clippy-only"
43 cp lib/clippy $out/bin
46 enableParallelBuilding = true;
49 homepage = "https://frrouting.org/";
50 description = "FRR routing daemon suite: CLI helper tool clippy";
52 This small tool is used to support generating CLI code for FRR. It is split out here,
53 to support cross-compiling, because it needs to be compiled with the build system toolchain
54 and not the target host one.
56 license = with licenses; [ gpl2Plus lgpl21Plus ];
57 maintainers = with maintainers; [ thillux ];
58 platforms = platforms.unix;