nixpkgs/pkgs/servers/gotify/default.nix

60 lines
1.4 KiB
Nix
Raw Permalink Normal View History

{ lib
2019-10-05 07:46:51 +00:00
, buildGoPackage
, 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;
2019-10-05 07:46:51 +00:00
src = fetchFromGitHub {
owner = "gotify";
repo = "server";
rev = "v${version}";
sha256 = import ./source-sha.nix;
2019-10-05 07:46:51 +00:00
};
# With `allowGoReference = true;`, `buildGoModule` adds the `-trimpath`
# argument for Go builds which apparently breaks the UI like this:
#
# server[780]: stat /var/lib/private/ui/build/index.html: no such file or directory
allowGoReference = true;
vendorSha256 = import ./vendor-sha.nix;
2019-10-05 07:46:51 +00:00
doCheck = false;
buildInputs = [ sqlite ];
2019-10-05 07:46:51 +00:00
ui = callPackage ./ui.nix { };
preBuild = ''
cp -r ${ui}/libexec/gotify-ui/deps/gotify-ui/build ui/build && go run hack/packr/packr.go
2019-10-05 07:46:51 +00:00
'';
2020-05-10 20:12:41 +00:00
passthru = {
updateScript = ./update.sh;
};
2019-10-05 07:46:51 +00:00
# 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"
2019-10-05 07:46:51 +00:00
];
meta = with lib; {
2019-10-05 07:46:51 +00:00
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 ];
};
}