Merge pull request #200330 from aaronjheng/modd

This commit is contained in:
Martin Weinelt 2022-11-12 15:03:14 +01:00 committed by GitHub
commit 8452746f7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,20 @@
{ buildGoPackage, fetchFromGitHub, lib }:
{ lib, buildGoModule, fetchFromGitHub }:
buildGoPackage rec {
buildGoModule rec {
pname = "modd";
version = "0.8";
version = "unstable-2021-12-15";
src = fetchFromGitHub {
owner = "cortesi";
repo = "modd";
rev = "v${version}";
sha256 = "1dmfpbpcvbx4sl4q1hwbfpalq1ml03w1cca7x40y18g570qk7aq5";
rev = "6083f9d1c171bd3292945672dab654a70d205945";
sha256 = "sha256-KDZyOnytDLyybHTgU1v/NpiomeHXMIUHiQ+Xpmwyo0w=";
};
goPackagePath = "github.com/cortesi/modd";
subPackages = [ "cmd/modd" ];
vendorSha256 = "sha256-O+hJRMSwV/9NHxbaLjloCWnfPugfRYaXNve098wjbqQ=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "A flexible developer tool that runs processes and responds to filesystem changes";
homepage = "https://github.com/cortesi/modd";