nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 30 lines 717 B view raw
1{ 2 stdenv, 3 lib, 4 fetchFromGitHub, 5 autoreconfHook, 6}: 7 8stdenv.mkDerivation rec { 9 pname = "6tunnel"; 10 version = "0.13"; 11 12 src = fetchFromGitHub { 13 owner = "wojtekka"; 14 repo = "6tunnel"; 15 rev = version; 16 sha256 = "0zsx9d6xz5w8zvrqsm8r625gpbqqhjzvjdzc3z8yix668yg8ff8h"; 17 }; 18 19 nativeBuildInputs = [ autoreconfHook ]; 20 21 meta = { 22 description = "Tunnelling for application that don't speak IPv6"; 23 mainProgram = "6tunnel"; 24 homepage = "https://github.com/wojtekka/6tunnel"; 25 changelog = "https://github.com/wojtekka/6tunnel/blob/${version}/ChangeLog"; 26 license = lib.licenses.gpl2Only; 27 maintainers = with lib.maintainers; [ Br1ght0ne ]; 28 platforms = lib.platforms.unix; 29 }; 30}