aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/modd/default.nix
blob: 106f23ac3f11e23e314f8ff3c6c20a505f63163a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
  };
}