softether-5/flake.nix

15 lines
368 B
Nix

{
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; };
};
}