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.
39 lines
825 B
Nix
39 lines
825 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, zlib
|
|
, nettools
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "iodine";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yarrick";
|
|
repo = "iodine";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-0vDl/F/57puugrEdOtdlpNPMF9ugO7TP3KLWo/7bP2k=";
|
|
};
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
patchPhase = ''sed -i "s,/sbin/route,${nettools}/bin/route," src/tun.c'';
|
|
|
|
env.NIX_CFLAGS_COMPILE = ''-DIFCONFIGPATH="${nettools}/bin/" -DROUTEPATH="${nettools}/bin/"'';
|
|
|
|
installFlags = [ "prefix=\${out}" ];
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) iodine;
|
|
};
|
|
|
|
meta = {
|
|
homepage = "http://code.kryo.se/iodine/";
|
|
description = "Tool to tunnel IPv4 data through a DNS server";
|
|
license = lib.licenses.isc;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|