evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / tr / trayscale / package.nix
blob9fa5c40e073fd0dbe7867c9885af07f52f7cc2d0
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , pkg-config
5 , wrapGAppsHook4
6 , tailscale
7 , gtk4
8 , gobject-introspection
9 , libadwaita
12 buildGoModule rec {
13   pname = "trayscale";
14   version = "0.13.5";
16   src = fetchFromGitHub {
17     owner = "DeedleFake";
18     repo = "trayscale";
19     rev = "v${version}";
20     hash = "sha256-SBt9bK2fjxIEANjw+Gs+lHiWplzNMfporj+ZVtt50pw=";
21   };
23   vendorHash = "sha256-PPKrtvW0fwzCO+OqJ7S/Kd6WOwN1DqQDhpeQUPCSpUU=";
25   subPackages = [ "cmd/trayscale" ];
27   ldflags = [
28     "-s"
29     "-w"
30     "-X=deedles.dev/trayscale/internal/version.version=${version}"
31   ];
33   nativeBuildInputs = [ pkg-config gobject-introspection wrapGAppsHook4 ];
34   buildInputs = [ gtk4 libadwaita ];
36   # there are no actual tests, and it takes 20 minutes to rebuild
37   doCheck = false;
39   postInstall = ''
40     sh ./dist.sh install $out
41     glib-compile-schemas $out/share/glib-2.0/schemas
42   '';
44   preFixup = ''
45     gappsWrapperArgs+=(--prefix PATH : "${tailscale}/bin")
46   '';
48   meta = {
49     changelog = "https://github.com/DeedleFake/trayscale/releases/tag/${src.rev}";
50     description = "Unofficial GUI wrapper around the Tailscale CLI client";
51     homepage = "https://github.com/DeedleFake/trayscale";
52     license = lib.licenses.mit;
53     maintainers = with lib.maintainers; [ sikmir ];
54     mainProgram = "trayscale";
55     platforms = lib.platforms.linux;
56   };