summary refs log tree commit diff
path: root/pkgs/tools/networking/pwnat/default.nix
blob: 780477af2fcb495cd8ab562aa92ed92a38c22b0c (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
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  name  = "${pname}-${date}";
  pname = "pwnat";
  date  = "2014-09-08";

  src = fetchFromGitHub {
    owner  = "samyk";
    repo   = pname;
    rev    = "1d07c2eb53171733831c0cd01e4e96a3204ec446";
    sha256 = "056xhlnf1axa6k90i018xwijkwc9zc7fms35hrkzwgs40g9ybrx5";
  };

  installPhase = ''
    mkdir -p $out/bin $out/share/pwnat
    cp pwnat $out/bin
    cp README* COPYING* $out/share/pwnat
  '';

  meta = with lib; {
    homepage    = "http://samy.pl/pwnat/";
    description = "ICMP NAT to NAT client-server communication";
    license     = lib.licenses.gpl3Plus;
    maintainers = with maintainers; [viric];
    platforms   = with platforms; linux;
  };
}