Packaged gohmome

This commit is contained in:
fleaz 2024-02-14 10:53:55 +01:00
parent d9a9fe6a86
commit 5f38ac1616
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
3 changed files with 21 additions and 3 deletions

View file

@ -16,4 +16,5 @@ self: super: {
libedgetpu = self.callPackage ./libedgetpu { }; libedgetpu = self.callPackage ./libedgetpu { };
neolink = self.callPackage ./neolink { }; neolink = self.callPackage ./neolink { };
mealie = self.callPackage ./mealie { }; mealie = self.callPackage ./mealie { };
gohome = self.callPackage ./gohome { };
} }

19
gohome/default.nix Normal file
View file

@ -0,0 +1,19 @@
{ lib
, buildGoModule
, pkgs
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gohome";
version = "1.4.3";
src = fetchFromGitHub {
owner = "sbreitf1";
repo = "gohome";
hash = "sha256-fJ0zFYYK0Fr92NuLq/hyiQ00TzZKHWn9mHjdLmUU6tI=";
rev = "v${version}";
};
vendorHash = "sha256-XtGlE2OPm3rM1hFhveiWokF9LT5dtWzrZIqG3ElYo+8=";
}

View file

@ -2,8 +2,6 @@
pkgs.mkShell { pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
cpthook gohome
hacompanion
pulse-secure
]; ];
} }