Skip to content

Commit

Permalink
softether: 4.38 -> 4.41
Browse files Browse the repository at this point in the history
  • Loading branch information
6543 committed Oct 27, 2024
1 parent 2ba15d4 commit 059f99c
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions pkgs/by-name/so/softether/package.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
{
lib,
stdenv,
fetchurl,
fetchFromGitHub,
openssl,
readline,
ncurses,
zlib,
dataDir ? "/var/lib/softether",
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "softether";
version = "4.38";
build = "9760";
version = "4.41-9782-beta";

src = fetchurl {
url = "https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/releases/download/v${version}-${build}-rtm/softether-src-v${version}-${build}-rtm.tar.gz";
sha256 = "0d8zahi9lkv72jh8yj66pwrsi4451vk113d3khzrzgbic6s2i0g6";
src = fetchFromGitHub {
owner = "SoftEtherVPN";
repo = "SoftEtherVPN_Stable";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-yvN5hlfAtE+gWm0s/TY/Lp53By5SDHyQIvvDutRnDNQ=";
};

buildInputs = [
Expand All @@ -40,11 +41,14 @@ stdenv.mkDerivation rec {
Makefile
'';

meta = with lib; {
meta = {
description = "Open-Source Free Cross-platform Multi-protocol VPN Program";
homepage = "https://www.softether.org/";
license = licenses.asl20;
maintainers = [ maintainers.rick68 ];
platforms = [ "x86_64-linux" ];
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.rick68 ];
platforms = [
"x86_64-linux"
"aarch64-linux"
];
};
}
})

0 comments on commit 059f99c

Please sign in to comment.