devd: init at 0.9

devd is a local development server designed to be used with modd
(already in nixpkgs.)
This commit is contained in:
Brian Hicks
2019-05-13 19:38:22 -05:00
parent 758050e411
commit 9bf8f18368
3 changed files with 225 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ buildGoPackage, fetchFromGitHub, stdenv }:
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" ];
goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "A local webserver for developers";
homepage = https://github.com/cortesi/devd;
license = licenses.mit;
maintainers = with maintainers; [ brianhicks ];
platforms = platforms.all;
};
}