forked from mirrors/nixpkgs
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:
parent
2e8c329393
commit
486132e97c
|
@ -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 ];
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue