Adding udptunnel

(Fixing a semicolon in pwnat expr too)
This commit is contained in:
Lluís Batlle i Rossell 2013-05-08 22:50:54 +02:00
parent a8b576ecaf
commit e9cbe5439e
3 changed files with 27 additions and 1 deletions

View File

@ -20,5 +20,5 @@ stdenv.mkDerivation {
license = "GPLv3+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
}
};
}

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "udptunnel-19";
src = fetchurl {
url = http://udptunnel.googlecode.com/files/udptunnel-r19.tar.gz;
sha1 = "51edec3b63b659229bcf92f6157568d3b074ede0";
};
installPhase = ''
ensureDir $out/bin $out/share/udptunnel
cp udptunnel $out/bin
cp README COPYING* $out/share/udptunnel
'';
meta = {
homepage = http://code.google.com/p/udptunnel/;
description = "Tunnels TCP over UDP packets";
license = "GPLv3+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -1707,6 +1707,8 @@ let
udftools = callPackage ../tools/filesystems/udftools {};
udptunnel = callPackage ../tools/networking/udptunnel { };
ufraw = callPackage ../applications/graphics/ufraw { };
unetbootin = callPackage ../tools/cd-dvd/unetbootin { };