innernet: init at 1.0.0 (#118007)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
08bd2146a7
commit
cd251bfd11
25
pkgs/tools/networking/innernet/default.nix
Normal file
25
pkgs/tools/networking/innernet/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, llvmPackages, linuxHeaders, sqlite, Security }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "innernet";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tonarino";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-OomCSA02ypFVzkYMcmkFREWB6x7oxgpt7x2zRANIDMw=";
|
||||||
|
};
|
||||||
|
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
||||||
|
|
||||||
|
nativeBuildInputs = with llvmPackages; [ llvm clang ];
|
||||||
|
buildInputs = [ sqlite ] ++ lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
cargoSha256 = "sha256-GYNk3j8fjKSo3Qk6Qy0l6kNINK3FxlSYoEkJSx7kVpk=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A private network system that uses WireGuard under the hood";
|
||||||
|
homepage = "https://github.com/tonarino/innernet";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ tomberek _0x4A6F ];
|
||||||
|
};
|
||||||
|
}
|
@ -5578,6 +5578,10 @@ in
|
|||||||
|
|
||||||
infamousPlugins = callPackage ../applications/audio/infamousPlugins { };
|
infamousPlugins = callPackage ../applications/audio/infamousPlugins { };
|
||||||
|
|
||||||
|
innernet = callPackage ../tools/networking/innernet {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
innoextract = callPackage ../tools/archivers/innoextract { };
|
innoextract = callPackage ../tools/archivers/innoextract { };
|
||||||
|
|
||||||
input-utils = callPackage ../os-specific/linux/input-utils { };
|
input-utils = callPackage ../os-specific/linux/input-utils { };
|
||||||
|
Loading…
Reference in New Issue
Block a user