about summary refs log tree commit diff
path: root/pkgs/tools/networking/netcat-openbsd/default.nix
blob: ef539cbb51fdf32928d9d1bcf830b94e670a646d (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
34
35
{stdenv, fetchurl, pkgconfig, libbsd}:

stdenv.mkDerivation rec {
  name = "netcat-openbsd-1.105";
  version = "1.105";

  srcs = [
    (fetchurl {
      url = "mirror://debian/pool/main/n/netcat-openbsd/netcat-openbsd_1.105.orig.tar.gz";
      sha256 = "07i1vcz8ycnfwsvz356rqmim8akfh8yhjzmhc5mqf5hmdkk3yra0";
    })
    (fetchurl {
      url = "mirror://debian/pool/main/n/netcat-openbsd/netcat-openbsd_1.105-7.debian.tar.gz";
      sha256 = "0qxkhbwcifrps34s5mzzg79cmkvz3f96gphd3pl978pygwr5krzf";
    })
  ];

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libbsd ];

  sourceRoot = name;
  patches = [ "../debian/patches/*.patch" ];

  installPhase = ''
    install -Dm0755 nc $out/bin/nc
    install -Dm0644 nc.1 $out/share/man/man1/nc.1
  '';

  meta = {
    homepage = "http://packages.debian.org/netcat-openbsd";
    description = "TCP/IP swiss army knife, OpenBSD variant";
    platforms = stdenv.lib.platforms.linux;
  };

}