2022-11-09 03:05:50 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-04-19 15:46:18 +00:00
|
|
|
|
2022-11-09 03:05:50 +00:00
|
|
|
buildGoModule rec {
|
2019-04-19 15:46:18 +00:00
|
|
|
pname = "modd";
|
2022-11-09 03:05:50 +00:00
|
|
|
version = "unstable-2021-12-15";
|
|
|
|
|
2019-04-19 15:46:18 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cortesi";
|
|
|
|
repo = "modd";
|
2022-11-09 03:05:50 +00:00
|
|
|
rev = "6083f9d1c171bd3292945672dab654a70d205945";
|
|
|
|
sha256 = "sha256-KDZyOnytDLyybHTgU1v/NpiomeHXMIUHiQ+Xpmwyo0w=";
|
2019-04-19 15:46:18 +00:00
|
|
|
};
|
2022-11-09 03:05:50 +00:00
|
|
|
|
|
|
|
vendorSha256 = "sha256-O+hJRMSwV/9NHxbaLjloCWnfPugfRYaXNve098wjbqQ=";
|
|
|
|
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2019-04-19 15:46:18 +00:00
|
|
|
description = "A flexible developer tool that runs processes and responds to filesystem changes";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/cortesi/modd";
|
2019-04-19 15:46:18 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ kierdavis ];
|
|
|
|
};
|
|
|
|
}
|