1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "bacnet-stack";
10 rev = "bacnet-stack-${version}";
11 sha256 = "078p7qsy9v6fl7pzwgcr72pgjqxfxmfxyqajih2zqlb5g5sf88vh";
14 hardeningDisable = [ "all" ];
17 make BUILD=debug BACNET_PORT=linux BACDL_DEFINE=-DBACDL_BIP=1 BACNET_DEFINES=" -DPRINT_ENABLED=1 -DBACFILE -DBACAPP_ALL -DBACNET_PROPERTY_LISTS"
26 description = "BACnet open source protocol stack for embedded systems, Linux, and Windows";
27 platforms = platforms.linux;
28 license = licenses.gpl2;
29 maintainers = with maintainers; [ WhittlesJr ];