biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / networking / gossa / default.nix
blob13b59f4c4d9dfb623c4b6683b5b6f1da4cba3e0e
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , buildGoModule
5 }:
7 buildGoModule rec {
8   pname = "gossa";
9   version = "1.0.0";
11   src = fetchFromGitHub {
12     owner = "pldubouilh";
13     repo = "gossa";
14     rev = "v${version}";
15     fetchSubmodules = true;
16     hash = "sha256-vonhVxXbYI/5Gl9ZwI8+a3YXSjoqLVic1twykiy+e34=";
17   };
19   vendorHash = null;
21   ldflags = [ "-s" "-w" ];
23   # Tests require a socket connection to be created.
24   doCheck = false;
26   meta = with lib; {
27     homepage = "https://github.com/pldubouilh/gossa";
28     description = "A fast and simple multimedia fileserver";
29     license = licenses.mit;
30     maintainers = with maintainers; [ dsymbol ];
31     mainProgram = "gossa";
32   };