Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / servers / asouldocs / default.nix
blobcf0c5f48e00702b5c797ac6c494457ec0a9a7b84
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "asouldocs";
5   version = "1.0.0";
7   src = fetchFromGitHub {
8     owner = "asoul-sig";
9     repo = "asouldocs";
10     rev = "v${version}";
11     hash = "sha256-ctRE7aF3Qj+fI/m0CuLA6x7E+mY6s1+UfBJI5YFea4g=";
12   };
14   vendorHash = "sha256-T/KLiSK6bxXGkmVJ5aGrfHTUfLs/ElGyWSoCL5kb/KU=";
16   meta = with lib; {
17     description = "Web server for multi-language, real-time synchronization and searchable documentation";
18     homepage = "https://asouldocs.dev/";
19     license = licenses.mit;
20     maintainers = with maintainers; [ ivar anthonyroussel ];
21   };