forked from mirrors/nixpkgs
Merge pull request #209251 from urandom2/netmaker
This commit is contained in:
commit
5a47948232
|
@ -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 ];
|
||||
|
||||
|
|
|
@ -31029,7 +31029,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