3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #171197 from aaronjheng/matterircd

matterircd: 0.25.0 -> 0.25.1
This commit is contained in:
Sandro 2022-05-02 16:24:48 +02:00 committed by GitHub
commit 4cc006b433
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;