summary refs log tree commit diff
path: root/pkgs/tools/networking/cutter/default.nix
blob: 28eab7f495aa756424d3b0d79369e5a1bc2b885a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "cutter-1.04";

  src = fetchurl {
    url = "http://www.digitage.co.uk/digitage/files/cutter/${name}.tgz";
    sha256 = "100iy31a3njif6vh9gfsqrm14hac05rrflla275gd4rkxdlnqcqv";
  };

  installPhase = ''
    install -D -m 0755 cutter $out/bin/tcp-cutter
  '';

  meta = with stdenv.lib; {
    description = "TCP/IP Connection cutting on Linux Firewalls and Routers";
    homepage = http://www.digitage.co.uk/digitage/software/linux-security/cutter;
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = [ maintainers.offline ];
  };
}