nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 22 lines 666 B view raw
1{ buildGoPackage, fetchFromGitHub, stdenv }: 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 goDeps = ./deps.nix; 15 meta = with stdenv.lib; { 16 description = "A flexible developer tool that runs processes and responds to filesystem changes"; 17 homepage = https://github.com/cortesi/modd; 18 license = licenses.mit; 19 maintainers = with maintainers; [ kierdavis ]; 20 platforms = platforms.all; 21 }; 22}