nixpkgs/pkgs/tools/security/knockknock/default.nix
Dan Peebles a8c7abdb8d knockknock: init
A simple but secure port knocking daemon and associated tool (NixOS modules upcoming)
2015-07-22 01:26:40 +00:00

30 lines
859 B
Nix

{ stdenv, fetchFromGitHub, buildPythonPackage, python, pycrypto, hping }:
buildPythonPackage rec {
rev = "bf14bbff";
name = "knockknock-r${rev}";
src = fetchFromGitHub {
inherit rev;
owner = "moxie0";
repo = "knockknock";
sha256 = "1chpfs3w2vkjrgay69pbdr116z1jldv53fi768a1i05fdqhy1px4";
};
propagatedBuildInputs = [ pycrypto ];
patchPhase = ''
substituteInPlace setup.py --replace "/etc" "$out/etc"
substituteInPlace knockknock.py --replace 'existsInPath("hping3")' '"${hping}/bin/hping3"'
'';
meta = with stdenv.lib; {
description = "Simple, secure port knocking daemon and client written in Python";
homepage = "http://www.thoughtcrime.org/software/knockknock/";
license = licenses.gpl3;
maintainers = with maintainers; [ copumpkin ];
platforms = with platforms; linux;
};
}