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 26, 2024
1 parent 30dd264 commit 45e7cb2
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 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 = "v4.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 = finalAttrs.version;
hash = "sha256-yvN5hlfAtE+gWm0s/TY/Lp53By5SDHyQIvvDutRnDNQ=";
};

buildInputs = [
Expand All @@ -40,11 +41,11 @@ 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" ];
};
}
})

0 comments on commit 45e7cb2

Please sign in to comment.