Unverified Commit 12ac168c authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #200113 from azahi/fwbuilder

parents af85b072 693d8798
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
, stdenv
, fetchFromGitHub
, cmake
, qtbase
, ninja
, wrapQtAppsHook
, wayland
, wayland-protocols
@@ -22,6 +22,7 @@ stdenv.mkDerivation rec {

  nativeBuildInputs = [
    cmake
    ninja
    wrapQtAppsHook
  ];

@@ -33,12 +34,19 @@ stdenv.mkDerivation rec {

  NIX_CFLAGS_COMPILE = [
    "-Wno-error=misleading-indentation"
    "-Wno-error=deprecated-declarations"
  ];

  meta = with lib; {
    description = "GUI Firewall Management Application";
    longDescription = ''
      Firewall Builder is a GUI firewall management application for iptables,
      PF, Cisco ASA/PIX/FWSM, Cisco router ACL and more. Firewall configuration
      data is stored in a central file that can scale to hundreds of firewalls
      managed from a single UI.
    '';
    homepage = "https://github.com/fwbuilder/fwbuilder";
    license     = licenses.gpl2;
    license = licenses.gpl2Only;
    platforms = platforms.linux;
    maintainers = [ maintainers.elatov ];
  };