depot/third_party/nixpkgs/pkgs/development/tools/modd/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
604 B
Nix

{ buildGoPackage, fetchFromGitHub, lib }:
buildGoPackage rec {
pname = "modd";
version = "0.8";
src = fetchFromGitHub {
owner = "cortesi";
repo = "modd";
rev = "v${version}";
sha256 = "1dmfpbpcvbx4sl4q1hwbfpalq1ml03w1cca7x40y18g570qk7aq5";
};
goPackagePath = "github.com/cortesi/modd";
subPackages = [ "cmd/modd" ];
meta = with lib; {
description = "A flexible developer tool that runs processes and responds to filesystem changes";
homepage = "https://github.com/cortesi/modd";
license = licenses.mit;
maintainers = with maintainers; [ kierdavis ];
};
}