summary refs log tree commit diff
path: root/pkgs/tools/networking/netcat-openbsd/default.nix
blob: e71abcd8a2c8f7a01e98b6f789c77bd858cfe2f0 (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
{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";
    })
  ];

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

  installPhase = ''
    install -Dm0755 nc $out/bin/nc
  '';

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

}