Merge pull request #101091 from mweinelt/fastd

fastd: 19 -> 21

authored by

Andreas Rammhold and committed by
GitHub
5506c401 eaadab0f

+4 -13
+4 -13
pkgs/tools/networking/fastd/default.nix
··· 1 - { stdenv, fetchFromGitHub, cmake, bison, pkgconfig 2 , libuecc, libsodium, libcap, json_c, openssl }: 3 4 stdenv.mkDerivation rec { 5 pname = "fastd"; 6 - version = "19"; 7 8 src = fetchFromGitHub { 9 owner = "Neoraider"; 10 repo = "fastd"; 11 rev = "v${version}"; 12 - sha256 = "1h3whjvy2n2cyvbkbg4y1z9vlrn790spzbdhj4glwp93xcykhz5i"; 13 }; 14 15 - postPatch = '' 16 - substituteInPlace src/crypto/cipher/CMakeLists.txt \ 17 - --replace 'add_subdirectory(aes128_ctr)' "" 18 - ''; 19 - 20 - nativeBuildInputs = [ pkgconfig bison cmake ]; 21 buildInputs = [ libuecc libsodium libcap json_c openssl ]; 22 - 23 - cmakeFlags = [ 24 - "-DENABLE_OPENSSL=true" 25 - ]; 26 27 enableParallelBuilding = true; 28
··· 1 + { stdenv, fetchFromGitHub, bison, meson, ninja, pkgconfig 2 , libuecc, libsodium, libcap, json_c, openssl }: 3 4 stdenv.mkDerivation rec { 5 pname = "fastd"; 6 + version = "21"; 7 8 src = fetchFromGitHub { 9 owner = "Neoraider"; 10 repo = "fastd"; 11 rev = "v${version}"; 12 + sha256 = "1p4k50dk8byrghbr0fwmgwps8df6rlkgcd603r14i71m5g27z5gw"; 13 }; 14 15 + nativeBuildInputs = [ pkgconfig bison meson ninja ]; 16 buildInputs = [ libuecc libsodium libcap json_c openssl ]; 17 18 enableParallelBuilding = true; 19