Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at github-to-sqlite-beautifulsoup4 22 lines 526 B view raw
1{ lib, fetchFromGitHub, python3Packages }: 2 3python3Packages.buildPythonApplication rec { 4 pname = "check-openvpn"; 5 version = "0.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "liquidat"; 9 repo = "nagios-icinga-openvpn"; 10 rev = version; 11 sha256 = "1vz3p7nckc5k5f06nm1xfzpykhyndh2dzyagmifrzg5k478p1lpm"; 12 }; 13 14 # no tests 15 doCheck = false; 16 17 meta = with lib; { 18 description = "A nagios/icinga/sensu check plugin for OpenVPN"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ peterhoeg ]; 21 }; 22}