invoice: init at 0.1.0

This commit is contained in:
Mostly Void 2023-07-08 13:34:04 +02:00
parent 5eb2425c0e
commit 0378e2e65e
No known key found for this signature in database
GPG key ID: E2B7342D0CAA82C2
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "invoice";
version = "0.1.0";
src = fetchFromGitHub {
owner = "maaslalani";
repo = "invoice";
rev = "v${version}";
hash = "sha256-WtQ4nF31uIoplY18GZNs41ZOCxmbIu71YpEGk8aTGww=";
};
vendorHash = "sha256-8VhBflnpsJ5h8S6meDFZKCcS2nz5u4kPE9W710gJG4U=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Command line invoice generator";
homepage = "https://github.com/maaslalani/invoice";
license = licenses.mit;
maintainers = with maintainers; [ dit7ya ];
};
}

View file

@ -5288,6 +5288,8 @@ with pkgs;
interlock = callPackage ../servers/interlock { };
invoice = callPackage ../tools/misc/invoice { };
invoiceplane = callPackage ../servers/web-apps/invoiceplane { };
iotas = callPackage ../applications/office/iotas { };