biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / 6tunnel / default.nix
blobb26853ee4ea165d690e8a90d3789afe3d8db504e
1 { stdenv, lib, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "6tunnel";
5   version = "0.13";
7   src = fetchFromGitHub {
8     owner = "wojtekka";
9     repo = pname;
10     rev = version;
11     sha256 = "0zsx9d6xz5w8zvrqsm8r625gpbqqhjzvjdzc3z8yix668yg8ff8h";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   meta = with lib; {
17     description = "Tunnelling for application that don't speak IPv6";
18     mainProgram = "6tunnel";
19     homepage = "https://github.com/wojtekka/6tunnel";
20     changelog = "https://github.com/wojtekka/6tunnel/blob/${version}/ChangeLog";
21     license = licenses.gpl2Only;
22     maintainers = with maintainers; [ Br1ght0ne ];
23     platforms = platforms.unix;
24   };