nixpkgs/pkgs/applications/misc/itd/default.nix
2022-11-23 10:29:18 +01:00

44 lines
902 B
Nix

{ stdenv
, lib
, buildGoModule
, fetchFromGitea
}:
buildGoModule rec {
pname = "itd";
version = "1.0.0";
# https://gitea.arsenm.dev/Arsen6331/itd/tags
src = fetchFromGitea {
domain = "gitea.arsenm.dev";
owner = "Arsen6331";
repo = "itd";
rev = "v${version}";
hash = "sha256-von/gvKnm69r/Z3Znm9IW97LfRq4v1cpv5z05h0ahek=";
};
vendorHash = "sha256-Sj1ASrb80AgZDfIwmSspArRXSaxP8FlXYi9xyWfCYWk=";
preBuild = ''
echo r${version} > version.txt
'';
subPackages = [
"."
"cmd/itctl"
];
postInstall = ''
install -Dm644 itd.toml $out/etc/itd.toml
'';
meta = with lib; {
description = "itd is a daemon to interact with the PineTime running InfiniTime";
homepage = "https://gitea.arsenm.dev/Arsen6331/itd";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ mindavi raphaelr ];
};
}