nixpkgs/pkgs/servers/web-apps/galene/default.nix

31 lines
725 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2020-12-30 20:22:51 +00:00
buildGoModule rec {
pname = "galene";
version = "0.3";
2020-12-30 20:22:51 +00:00
src = fetchFromGitHub {
owner = "jech";
repo = "galene";
rev = "galene-${version}";
sha256 = "1pl3mnkmfqykhq55q36kvvnvn9fgsk72pfa7nii3hywzad0bj0ar";
2020-12-30 20:22:51 +00:00
};
vendorSha256 = "0jrc6y5chkj25bnpzn6blvfb0vd09h6fdcz75g54605z8nqd397p";
2020-12-30 20:22:51 +00:00
outputs = [ "out" "static" ];
postInstall = ''
mkdir $static
cp -r ./static $static
'';
2021-02-02 20:13:05 +00:00
meta = with lib; {
2020-12-30 20:22:51 +00:00
description = "Videoconferencing server that is easy to deploy, written in Go";
homepage = "https://github.com/jech/galene";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ rgrunbla ];
};
}