nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 17 lines 525 B view raw
1{ lib, mkDiscoursePlugin, fetchFromGitHub }: 2 3mkDiscoursePlugin { 4 name = "discourse-docs"; 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-docs"; 8 rev = "0b4d2f3691048b6e0e257a1ac9ed01f66f662ba8"; 9 sha256 = "sha256-HeIUCTbMNpuo6zeaDClsGrUOz4m0L+4UK7AwPsrKIHY="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-docs"; 13 maintainers = with maintainers; [ dpausp ]; 14 license = licenses.mit; 15 description = "Find and filter knowledge base topics"; 16 }; 17}