Merge pull request #242254 from dit7ya/invoice

invoice: init at 0.1.0
This commit is contained in:
Pol Dellaiera 2023-07-14 09:06:42 +02:00 committed by GitHub
commit 5b2f98cc72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

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