gossa: init at 0.2.2
This commit is contained in:
parent
573f83e17f
commit
1746d534ee
2 changed files with 34 additions and 0 deletions
32
pkgs/applications/networking/gossa/default.nix
Normal file
32
pkgs/applications/networking/gossa/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, buildGoModule
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
name = "gossa";
|
||||||
|
version = "0.2.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "pldubouilh";
|
||||||
|
repo = "gossa";
|
||||||
|
rev = "v${version}";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
hash = "sha256-eMO9aoI+otGQcvBUJtxciQ7yhUidYizLrDjMVchH3qA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = null;
|
||||||
|
|
||||||
|
ldflags = [ "-s" "-w" ];
|
||||||
|
|
||||||
|
# Tests require a socket connection to be created.
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/pldubouilh/gossa";
|
||||||
|
description = "A fast and simple multimedia fileserver";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ dsymbol ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -30064,6 +30064,8 @@ with pkgs;
|
||||||
|
|
||||||
gosmore = callPackage ../applications/misc/gosmore { stdenv = gcc10StdenvCompat; };
|
gosmore = callPackage ../applications/misc/gosmore { stdenv = gcc10StdenvCompat; };
|
||||||
|
|
||||||
|
gossa = callPackage ../applications/networking/gossa { };
|
||||||
|
|
||||||
gpsbabel = libsForQt5.callPackage ../applications/misc/gpsbabel { };
|
gpsbabel = libsForQt5.callPackage ../applications/misc/gpsbabel { };
|
||||||
|
|
||||||
gpsbabel-gui = gpsbabel.override {
|
gpsbabel-gui = gpsbabel.override {
|
||||||
|
|
Loading…
Reference in a new issue