nixpkgs/pkgs/tools/networking/httptunnel/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

20 lines
578 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "3.3";
pname = "httptunnel";
src = fetchurl {
url = "http://www.nocrew.org/software/httptunnel/${pname}-${version}.tar.gz";
sha256 = "0mn5s6p68n32xzadz6ds5i6bp44dyxzkq68r1yljlv470jr84bql";
};
meta = with stdenv.lib; {
description = "Creates a bidirectional virtual data connection tunnelled in HTTP requests";
homepage = http://www.nocrew.org/software/httptunnel;
license = licenses.gpl2;
maintainers = with maintainers; [ koral ];
platforms = platforms.unix;
};
}