My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/devd/default.nix

20 lines
557 B

{ buildGoPackage, fetchFromGitHub, lib }:
buildGoPackage rec {
pname = "devd";
version = "0.9";
src = fetchFromGitHub {
owner = "cortesi";
repo = "devd";
rev = "v${version}";
sha256 = "1b02fj821k68q7xl48wc194iinqw9jiavzfl136hlzvg4m07p1wf";
};
goPackagePath = "github.com/cortesi/devd";
subPackages = [ "cmd/devd" ];
meta = with lib; {
description = "A local webserver for developers";
homepage = "https://github.com/cortesi/devd";
license = licenses.mit;
maintainers = with maintainers; [ brianhicks ];
};
}