about summary refs log tree commit diff
path: root/pkgs/tools/networking/cutter/default.nix
blob: 5d383f072102bfafb01f9051d4d1e0eb2e3e1c84 (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.03";

  src = fetchurl {
    url = "http://www.digitage.co.uk/digitage/files/cutter/${name}.tgz";
    md5 = "50093db9b64277643969ee75b83ebbd1";
  };

  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 ];
  };
}