payme: init at 1.2.0

This commit is contained in:
Simon Schoeters 2024-03-02 18:01:45 +01:00
parent 1c54fb7d9c
commit b2d7528345

View File

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "payme";
version = "1.2.0";
src = fetchFromGitHub {
owner = "jovandeginste";
repo = "payme";
rev = "v${version}";
hash = "sha256-WE/sAs0VSeb5UKkUy1iyjyXtgDmlQhdZkw8HMMSbQiE=";
};
vendorHash = null;
meta = {
description = "QR code generator (ASCII & PNG) for SEPA payments";
homepage = "https://github.com/jovandeginste/payme";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ cimm ];
};
}