3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #156470 from r-ryantm/auto-update/expenses

This commit is contained in:
legendofmiracles 2022-01-24 08:54:41 -06:00 committed by GitHub
commit 664706f6f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,32 +1,41 @@
{ lib { lib
, buildGoModule , buildGoModule
, fetchFromGitHub , fetchFromGitHub
, sqlite , sqlite
, installShellFiles
}: }:
buildGoModule rec { buildGoModule rec {
pname = "expenses"; pname = "expenses";
version = "0.2.2"; version = "0.2.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "manojkarthick"; owner = "manojkarthick";
repo = "expenses"; repo = "expenses";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-CaIbLtP7ziv9UBQE+QsNnqX65OV+6GIvkLwKm1G++iY="; sha256 = "sha256-sqsogF2swMvYZL7Kj+ealrB1AAgIe7ZXXDLRdHL6Q+0=";
}; };
vendorSha256 = "sha256-NWTFxF4QCH1q1xx+hmVmpvDeOlqH5Ai2+0ParE5px9M="; vendorSha256 = "sha256-Ac3f17Ws3Ne8Zo0vT+qlaMm/rhak9ua2jh5jlT6jF2Y=";
# package does not contain any tests as of v0.2.2 # package does not contain any tests as of v0.2.3
doCheck = false; doCheck = false;
nativeBuildInputs = [ installShellFiles ];
buildInputs = [ sqlite ]; buildInputs = [ sqlite ];
ldflags = [ ldflags = [
"-s" "-w" "-X github.com/manojkarthick/expenses/cmd.Version=${version}" "-s" "-w" "-X github.com/manojkarthick/expenses/cmd.Version=${version}"
]; ];
postInstall = ''
installShellCompletion --cmd expenses \
--bash <($out/bin/expenses completion bash) \
--zsh <($out/bin/expenses completion zsh) \
--fish <($out/bin/expenses completion fish)
'';
meta = with lib; { meta = with lib; {
description = "An interactive command line expense logger"; description = "An interactive command line expense logger";
license = licenses.mit; license = licenses.mit;