matterircd: 0.25.0 -> 0.25.1

This commit is contained in:
Aaron Jheng 2022-05-02 04:53:06 +00:00
parent f678ad7c7a
commit df82d7c0aa
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3

View File

@ -1,17 +1,19 @@
{ lib, buildGoPackage, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub }:
buildGoPackage rec {
buildGoModule rec {
pname = "matterircd";
version = "0.25.0";
version = "0.25.1";
src = fetchFromGitHub {
owner = "42wim";
repo = "matterircd";
rev = "v${version}";
sha256 = "sha256-AuY6tAZ1WlUkiKcbDcXBDh2OdKwWllx2xJxPCbqQguM=";
sha256 = "sha256-qglr0QN0ca6waxhwEFgYP9RHvTJ4YVn90vl+crcktao=";
};
goPackagePath = "github.com/42wim/matterircd";
vendorSha256 = null;
ldflags = [ "-s" "-w" ];
meta = with lib; {
inherit (src.meta) homepage;