modd: init at 0.8

This commit is contained in:
Kier Davis
2019-04-22 22:18:42 +01:00
parent 74697340dd
commit d5c65caaae
3 changed files with 162 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ 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 ];
platforms = platforms.all;
};
}