Adding udptunnel
(Fixing a semicolon in pwnat expr too)
This commit is contained in:
parent
a8b576ecaf
commit
e9cbe5439e
@ -20,5 +20,5 @@ stdenv.mkDerivation {
|
|||||||
license = "GPLv3+";
|
license = "GPLv3+";
|
||||||
maintainers = with stdenv.lib.maintainers; [viric];
|
maintainers = with stdenv.lib.maintainers; [viric];
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
24
pkgs/tools/networking/udptunnel/default.nix
Normal file
24
pkgs/tools/networking/udptunnel/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -1707,6 +1707,8 @@ let
|
|||||||
|
|
||||||
udftools = callPackage ../tools/filesystems/udftools {};
|
udftools = callPackage ../tools/filesystems/udftools {};
|
||||||
|
|
||||||
|
udptunnel = callPackage ../tools/networking/udptunnel { };
|
||||||
|
|
||||||
ufraw = callPackage ../applications/graphics/ufraw { };
|
ufraw = callPackage ../applications/graphics/ufraw { };
|
||||||
|
|
||||||
unetbootin = callPackage ../tools/cd-dvd/unetbootin { };
|
unetbootin = callPackage ../tools/cd-dvd/unetbootin { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user