softethe v5 (dev) building perfectly fine with nix and cmake

This commit is contained in:
sagar 2025-07-11 17:59:19 +00:00
commit 3d620ad53e
4 changed files with 102 additions and 0 deletions

15
flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
description = "softether-5";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
pname = "softether-5";
version = "5.02.5187";
in {
packages.${system}.default = pkgs.callPackage ./package.nix { inherit pname version; };
};
}