Skip to content

Commit

Permalink
Merge pull request #34004 from Mic92/netcat
Browse files Browse the repository at this point in the history
netcat-openbsd: 1.130 -> 1.187
  • Loading branch information
Mic92 committed Jan 18, 2018
2 parents f040f64 + 0097528 commit 3b21d4d
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions pkgs/tools/networking/netcat-openbsd/default.nix
@@ -1,30 +1,37 @@
{stdenv, fetchurl, pkgconfig, libbsd}:

stdenv.mkDerivation rec {
version = "1.130";
deb-version = "${version}-3";
version = "1.187";
deb-version = "${version}-1";
name = "netcat-openbsd-${version}";

srcs = [
(fetchurl {
url = "mirror://debian/pool/main/n/netcat-openbsd/netcat-openbsd_${version}.orig.tar.gz";
sha256 = "0nqy14yvclgzs98gv0fwp6jlfpfy2kk367zka648jiqbbl30awpx";
sha256 = "0sxsxl7n7hnxz931jqsp86cdwiq2lm4h3w0i2a67935pki924gxw";
})
(fetchurl {
url = "mirror://debian/pool/main/n/netcat-openbsd/netcat-openbsd_${deb-version}.debian.tar.xz";
sha256 = "0f9409vjm6v8a7m1zf5sr7wj6v5v8414i5vvxx1r45c11h69hh9a";
sha256 = "0jwbdis6avxdjzg8bcab1bdz296rkzzkdlv50fr3q0277fxjs49q";
})
];

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

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

prePatch = ''
for i in $(cat ../debian/patches/series); do
patch -p1 < "../debian/patches/$i"
done
'';

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

meta = with stdenv.lib; {
Expand Down

0 comments on commit 3b21d4d

Please sign in to comment.