nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 22 lines 619 B view raw
1{ buildGoPackage, fetchFromGitHub, stdenv }: 2 3buildGoPackage rec { 4 pname = "devd"; 5 version = "0.9"; 6 src = fetchFromGitHub { 7 owner = "cortesi"; 8 repo = "devd"; 9 rev = "v${version}"; 10 sha256 = "1b02fj821k68q7xl48wc194iinqw9jiavzfl136hlzvg4m07p1wf"; 11 }; 12 goPackagePath = "github.com/cortesi/devd"; 13 subPackages = [ "cmd/devd" ]; 14 goDeps = ./deps.nix; 15 meta = with stdenv.lib; { 16 description = "A local webserver for developers"; 17 homepage = https://github.com/cortesi/devd; 18 license = licenses.mit; 19 maintainers = with maintainers; [ brianhicks ]; 20 platforms = platforms.all; 21 }; 22}