nixpkgs/pkgs/servers/softether/4.25.nix

54 lines
1.4 KiB
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl
2018-02-22 15:37:59 +00:00
, openssl, readline, ncurses, zlib
, dataDir ? "/var/lib/softether" }:
2018-02-15 08:52:30 +00:00
let
os = if stdenv.isLinux then "1"
else if stdenv.isFreeBSD then "2"
else if stdenv.isSunOS then "3"
else if stdenv.isDarwin then "4"
else if stdenv.isOpenBSD then "5"
else "";
cpuBits = if stdenv.is64bit then "2" else "1";
in
stdenv.mkDerivation rec {
pname = "softether";
2018-02-15 08:52:30 +00:00
version = "4.25";
build = "9656";
compiledDate = "2018.01.15";
src = fetchurl {
url = "http://www.softether-download.com/files/softether/v${version}-${build}-rtm-${compiledDate}-tree/Source_Code/softether-src-v${version}-${build}-rtm.tar.gz";
sha256 = "1y1m8lf0xfh7m70d15wj2jjf5a5qhi3j49ciwqmsscsqvb1xwimr";
};
buildInputs = [ openssl readline ncurses zlib ];
preConfigure = ''
echo "${os}
${cpuBits}
" | ./configure
rm configure
'';
buildPhase = ''
mkdir -p $out/bin
sed -i \
-e "/INSTALL_BINDIR=/s|/usr/bin|/bin|g" \
-e "/_DIR=/s|/usr|${dataDir}|g" \
-e "s|\$(INSTALL|$out/\$(INSTALL|g" \
-e "/echo/s|echo $out/|echo |g" \
Makefile
'';
meta = with lib; {
2018-02-15 08:52:30 +00:00
description = "An Open-Source Free Cross-platform Multi-protocol VPN Program";
homepage = "https://www.softether.org/";
2018-02-15 08:52:30 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.rick68 ];
platforms = [ "x86_64-linux" ];
2018-02-15 08:52:30 +00:00
};
}