invoice: init at 0.1.0
This commit is contained in:
parent
5eb2425c0e
commit
0378e2e65e
2 changed files with 26 additions and 0 deletions
24
pkgs/tools/misc/invoice/default.nix
Normal file
24
pkgs/tools/misc/invoice/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5288,6 +5288,8 @@ with pkgs;
|
||||||
|
|
||||||
interlock = callPackage ../servers/interlock { };
|
interlock = callPackage ../servers/interlock { };
|
||||||
|
|
||||||
|
invoice = callPackage ../tools/misc/invoice { };
|
||||||
|
|
||||||
invoiceplane = callPackage ../servers/web-apps/invoiceplane { };
|
invoiceplane = callPackage ../servers/web-apps/invoiceplane { };
|
||||||
|
|
||||||
iotas = callPackage ../applications/office/iotas { };
|
iotas = callPackage ../applications/office/iotas { };
|
||||||
|
|
Loading…
Reference in a new issue