python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / 6tunnel / default.nix
blobfbdd23f754ef9543de4075b6230cf9c2a7dcc71e
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     homepage = "https://github.com/wojtekka/6tunnel";
19     license = licenses.gpl2;
20     maintainers = with maintainers; [ Br1ght0ne ];
21     platforms = platforms.unix;
22   };