summary refs log tree commit diff
path: root/pkgs/tools/security/knockknock/default.nix
blob: ed7f19065f053e413042bce78fba898f56d5a5d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib, fetchFromGitHub, python2Packages, hping }:

python2Packages.buildPythonApplication rec {
  pname = "knockknock";
  version = "unstable-2012-09-17";

  src = fetchFromGitHub {
    owner  = "moxie0";
    repo   = "knockknock";
    rev    = "bf14bbffc5f1d2105cd1d955dabca26b3faa0db4";
    sha256 = "1chpfs3w2vkjrgay69pbdr116z1jldv53fi768a1i05fdqhy1px4";
  };

  propagatedBuildInputs = [ python2Packages.pycrypto ];

  # No tests
  doCheck = false;

  postPatch = ''
    sed -i '/build\//d' setup.py
    substituteInPlace setup.py --replace "/etc" "$out/etc"
    substituteInPlace knockknock.py --replace 'existsInPath("hping3")' '"${hping}/bin/hping3"'
  '';

  meta = with lib; {
    description = "Simple, secure port knocking daemon and client written in Python";
    homepage    = "https://github.com/moxie0/knockknock";
    license     = licenses.gpl3Plus;
    maintainers = with maintainers; [ copumpkin ];
    platforms   = platforms.unix;
  };
}