depot/third_party/nixpkgs/pkgs/development/tools/modd/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

21 lines
637 B
Nix

{ buildGoPackage, fetchFromGitHub, stdenv }:
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" ];
goDeps = ./deps.nix;
meta = with stdenv.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 ];
};
}