nixpkgs/pkgs/development/tools/modd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
696 B
Nix
Raw Normal View History

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
vendorHash = "sha256-O+hJRMSwV/9NHxbaLjloCWnfPugfRYaXNve098wjbqQ=";
2022-11-09 03:05:50 +00:00
ldflags = [ "-s" "-w" ];
meta = with lib; {
2019-04-19 15:46:18 +00:00
description = "A flexible developer tool that runs processes and responds to filesystem changes";
mainProgram = "modd";
homepage = "https://github.com/cortesi/modd";
2019-04-19 15:46:18 +00:00
license = licenses.mit;
maintainers = with maintainers; [ kierdavis ];
};
}