evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / gossa / package.nix
blob0a4073781434d0e13a7387e55a9a3d94e00dd22b
1 { lib
2 , fetchFromGitHub
3 , buildGoModule
4 }:
6 buildGoModule rec {
7   pname = "gossa";
8   version = "1.0.0";
10   src = fetchFromGitHub {
11     owner = "pldubouilh";
12     repo = "gossa";
13     rev = "v${version}";
14     fetchSubmodules = true;
15     hash = "sha256-vonhVxXbYI/5Gl9ZwI8+a3YXSjoqLVic1twykiy+e34=";
16   };
18   vendorHash = null;
20   ldflags = [ "-s" "-w" ];
22   # Tests require a socket connection to be created.
23   doCheck = false;
25   meta = with lib; {
26     homepage = "https://github.com/pldubouilh/gossa";
27     description = "Fast and simple multimedia fileserver";
28     license = licenses.mit;
29     maintainers = with maintainers; [ dsymbol ];
30     mainProgram = "gossa";
31   };