mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
30 lines
910 B
Nix
30 lines
910 B
Nix
{ lib, stdenv, fetchurl, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.2";
|
|
pname = "tayga";
|
|
|
|
src = fetchurl {
|
|
url= "http://www.litech.org/${pname}/${pname}-${version}.tar.bz2";
|
|
hash = "sha256-Kx95J6nS3P+Qla/zwnGSSwUsz9L6ypWIsndDGkTwAJw=";
|
|
};
|
|
|
|
passthru.tests.tayga = nixosTests.tayga;
|
|
|
|
meta = with lib; {
|
|
description = "Userland stateless NAT64 daemon";
|
|
longDescription = ''
|
|
TAYGA is an out-of-kernel stateless NAT64 implementation
|
|
for Linux that uses the TUN driver to exchange IPv4 and
|
|
IPv6 packets with the kernel.
|
|
It is intended to provide production-quality NAT64 service
|
|
for networks where dedicated NAT64 hardware would be overkill.
|
|
'';
|
|
homepage = "http://www.litech.org/tayga";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "tayga";
|
|
};
|
|
}
|