nixpkgs/pkgs/servers/gotify/default.nix
Doron Behar a4cdb9a624 gotify-server: 2.0.17 -> 2.0.18
Use new line in printf calls of update.sh, so editor config CI check
won't fail.
2020-09-13 17:03:39 +03:00

55 lines
1.2 KiB
Nix

{ stdenv
, buildGoPackage
, lib
, fetchFromGitHub
, buildGoModule
, sqlite
, callPackage
}:
buildGoModule rec {
pname = "gotify-server";
# should be update just like all other files imported like that via the
# `update.sh` script.
version = import ./version.nix;
src = fetchFromGitHub {
owner = "gotify";
repo = "server";
rev = "v${version}";
sha256 = import ./source-sha.nix;
};
vendorSha256 = import ./vendor-sha.nix;
doCheck = false;
buildInputs = [ sqlite ];
ui = callPackage ./ui.nix { };
preBuild = ''
cp -r ${ui}/libexec/gotify-ui/deps/gotify-ui/build ui/build && go run hack/packr/packr.go
'';
passthru = {
updateScript = ./update.sh;
};
# Otherwise, all other subpackages are built as well and from some reason,
# produce binaries which panic when executed and are not interesting at all
subPackages = [ "." ];
buildFlagsArray = [
"-ldflags=-X main.Version=${version} -X main.Mode=prod"
];
meta = with stdenv.lib; {
description = "A simple server for sending and receiving messages in real-time per WebSocket";
homepage = "https://gotify.net";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar ];
};
}