mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 19:16:11 +00:00
snx-rs: init at 2.2.0
This commit is contained in:
parent
5710852ba6
commit
ce20f2207c
3983
pkgs/by-name/sn/snx-rs/Cargo.lock
generated
Normal file
3983
pkgs/by-name/sn/snx-rs/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
33
pkgs/by-name/sn/snx-rs/package.nix
Normal file
33
pkgs/by-name/sn/snx-rs/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ fetchFromGitHub, rustPlatform, lib, pkg-config, openssl, glib, atk, gtk3, libsoup, webkitgtk_4_1 }:
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "snx-rs";
|
||||
version = "2.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ancwrd1";
|
||||
repo = "snx-rs";
|
||||
rev = "v2.2.0";
|
||||
hash = "sha256-9aBJM20+G1U2NuJXBmax50o3M/lwRpLeqdcHCA28iAw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl glib atk gtk3 libsoup webkitgtk_4_1 ];
|
||||
|
||||
checkFlags = [
|
||||
"--skip=platform::linux::net::tests::test_default_ip"
|
||||
];
|
||||
|
||||
cargoLock = {
|
||||
lockFile = ./Cargo.lock;
|
||||
outputHashes = {
|
||||
"isakmp-0.1.0" = "sha256-Gk0/tyIQ62kH6ZSW6ov8SMVR2UBEWkz8HfqeWjSXmlY=";
|
||||
};
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Open source Linux client for Checkpoint VPN tunnels";
|
||||
homepage = "https://github.com/ancwrd1/snx-rs";
|
||||
license = lib.licenses.agplv3;
|
||||
maintainers = [ lib.maintainers.lheckemann ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user