fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ buildGoPackage, fetchFromGitHub, lib }:
2
3buildGoPackage rec {
4 pname = "modd";
5 version = "0.8";
6 src = fetchFromGitHub {
7 owner = "cortesi";
8 repo = "modd";
9 rev = "v${version}";
10 sha256 = "1dmfpbpcvbx4sl4q1hwbfpalq1ml03w1cca7x40y18g570qk7aq5";
11 };
12 goPackagePath = "github.com/cortesi/modd";
13 subPackages = [ "cmd/modd" ];
14 meta = with lib; {
15 description = "A flexible developer tool that runs processes and responds to filesystem changes";
16 homepage = "https://github.com/cortesi/modd";
17 license = licenses.mit;
18 maintainers = with maintainers; [ kierdavis ];
19 };
20}