Skip to content

Commit

Permalink
Fix missing zenity dependecy
Browse files Browse the repository at this point in the history
  • Loading branch information
billy4479 committed Apr 2, 2024
1 parent dd09a14 commit 3b60200
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
nativeBuildInputs = with pkgs; [
go
];
buildInputs = with pkgs; [
gnome.zenity
];
};

packages = {
Expand Down
5 changes: 3 additions & 2 deletions package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
lib,
buildGoModule,
go,
git,
gnome,
}: let
pname = "server-tool";
version = "2.1.3";
in
buildGoModule rec {
inherit pname version;
src = lib.cleanSource ./.;
nativeBuildInputs = [go git];
nativeBuildInputs = [go];
buildInputs = [gnome.zenity];

vendorHash = "sha256-YoguesTG55+Cl5ieCF3FFQK3B6EMpjGNmEV8QHu1VKE=";

Expand Down

0 comments on commit 3b60200

Please sign in to comment.