parent
a8b576ecaf
commit
e9cbe5439e
|
@ -20,5 +20,5 @@ stdenv.mkDerivation {
|
|||
license = "GPLv3+";
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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 {};
|
||||
|
||||
udptunnel = callPackage ../tools/networking/udptunnel { };
|
||||
|
||||
ufraw = callPackage ../applications/graphics/ufraw { };
|
||||
|
||||
unetbootin = callPackage ../tools/cd-dvd/unetbootin { };
|
||||
|
|
Loading…
Reference in New Issue