lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 24 lines 661 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "mark"; 5 version = "9.1.4"; 6 7 src = fetchFromGitHub { 8 owner = "kovetskiy"; 9 repo = "mark"; 10 rev = version; 11 sha256 = "sha256-nAgEegtRT4c2wJzVOY41JgM/JVW5xQjRnhXUzjwqxLY="; 12 }; 13 14 vendorHash = "sha256-2rEwZffM+RK0baz8m+fXN2NGYskv4zO67cWC4rx+hfI="; 15 16 ldflags = [ "-s" "-w" "-X main.version=${version}" ]; 17 18 meta = with lib; { 19 description = "A tool for syncing your markdown documentation with Atlassian Confluence pages"; 20 homepage = "https://github.com/kovetskiy/mark"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ rguevara84 ]; 23 }; 24}