netmaker-full: init at 0.17.1

We got complaints that netclient is not really netmaker. So like other
monorepo packages, we have split out netmaker to contain just the server
binary, and netmaker-full contains everything in the repo.

Updates #207802
This commit is contained in:
Colin Arnott 2023-01-06 00:03:35 +00:00
parent 2e8c329393
commit 486132e97c
No known key found for this signature in database
GPG key ID: 0447A663F7F3E236
2 changed files with 12 additions and 6 deletions

View file

@ -1,4 +1,12 @@
{ buildGoModule, fetchFromGitHub, installShellFiles, lib, libglvnd, pkg-config, xorg }:
{ buildGoModule
, fetchFromGitHub
, installShellFiles
, lib
, libglvnd
, pkg-config
, subPackages ? ["." "netclient"]
, xorg
}:
buildGoModule rec {
pname = "netmaker";
@ -13,10 +21,7 @@ buildGoModule rec {
vendorHash = "sha256-4LaGwwDu3pKd6I6r/F3isCi9CuFqPGvc5SdVTV34qOI=";
subPackages = [
"."
"netclient"
];
inherit subPackages;
nativeBuildInputs = [ pkg-config ];

View file

@ -31027,7 +31027,8 @@ with pkgs;
nerd-font-patcher = callPackage ../applications/misc/nerd-font-patcher { };
netmaker = callPackage ../applications/networking/netmaker {};
netmaker = callPackage ../applications/networking/netmaker {subPackages = ["."];};
netmaker-full = callPackage ../applications/networking/netmaker {};
newsflash = callPackage ../applications/networking/feedreaders/newsflash {
webkitgtk = webkitgtk_5_0;