mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
workout-tracker: init at v0.10.5
This commit is contained in:
parent
fa5fd9503c
commit
050f4664b5
32
pkgs/by-name/wo/workout-tracker/package.nix
Normal file
32
pkgs/by-name/wo/workout-tracker/package.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
...
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "workout-tracker";
|
||||
version = "0.10.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jovandeginste";
|
||||
repo = "workout-tracker";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-ekGaNHysY0lXbB5w6AycnLR9/4dqUp0busCcPPvzSVI=";
|
||||
};
|
||||
|
||||
vendorHash = null;
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/jovandeginste/workout-tracker/releases/tag/v${version}";
|
||||
description = "A workout tracking web application for personal use";
|
||||
homepage = "https://github.com/jovandeginste/workout-tracker";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "workout-tracker";
|
||||
maintainers = with lib.maintainers; [ bhankas ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user