mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
a21ead3d62
Jool is a SIIT and a NAT64 implementation for Linux.
10 lines
199 B
Nix
10 lines
199 B
Nix
{ fetchzip }:
|
|
|
|
rec {
|
|
version = "3.3.2";
|
|
src = fetchzip {
|
|
url = "https://www.jool.mx/download/Jool-${version}.zip";
|
|
sha256 = "0hc6vlxzmjrgf7vjcwprdqcbx3biq8kphks5k725mrd9rb84drgw";
|
|
};
|
|
}
|