Unverified Commit 1ac8e74e authored by Aaron Jheng's avatar Aaron Jheng
Browse files

modd: 0.8 -> unstable-2021-12-15

parent 187ffe25
Loading
Loading
Loading
Loading
+11 −7
Original line number Diff line number Diff line
{ buildGoPackage, fetchFromGitHub, lib }:
{ lib, buildGoModule, fetchFromGitHub }:

buildGoPackage rec {
buildGoModule rec {
  pname = "modd";
  version = "0.8";
  version = "unstable-2021-12-15";

  src = fetchFromGitHub {
    owner = "cortesi";
    repo = "modd";
    rev = "v${version}";
    sha256 = "1dmfpbpcvbx4sl4q1hwbfpalq1ml03w1cca7x40y18g570qk7aq5";
    rev = "6083f9d1c171bd3292945672dab654a70d205945";
    sha256 = "sha256-KDZyOnytDLyybHTgU1v/NpiomeHXMIUHiQ+Xpmwyo0w=";
  };
  goPackagePath = "github.com/cortesi/modd";
  subPackages = [ "cmd/modd" ];

  vendorSha256 = "sha256-O+hJRMSwV/9NHxbaLjloCWnfPugfRYaXNve098wjbqQ=";

  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    description = "A flexible developer tool that runs processes and responds to filesystem changes";
    homepage = "https://github.com/cortesi/modd";