File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
pkgs/by-name/se/seilfahrt Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ { lib
2+ , buildGoModule
3+ , fetchFromGitHub
4+ , pandoc
5+ } :
6+
7+ buildGoModule rec {
8+ pname = "seilfahrt" ;
9+ version = "1.0.2" ;
10+
11+ src = fetchFromGitHub {
12+ owner = "Nerdbergev" ;
13+ repo = "seilfahrt" ;
14+ rev = "v${ version } " ;
15+ hash = "sha256-2nbBG/LIx1JDUzxyASvM/5hAI2JbBRDuv8Jub+yTwdA=" ;
16+ } ;
17+
18+ vendorHash = "sha256-JU77EFk8SWgZkN4DEtkKS2MsBH16my4j9X/NJC/r6mI=" ;
19+
20+ buildInputs = [ pandoc ] ;
21+
22+ meta = with lib ; {
23+ description = "Tool to create a wiki page from a HedgeDoc" ;
24+ homepage = "https://github.com/Nerdbergev/seilfahrt" ;
25+ changelog = "https://github.com/Nerdbergev/seilfahrt/releases/tag/v${ version } " ;
26+ license = licenses . mit ;
27+ maintainers = with maintainers ; [ xgwq ] ;
28+ mainProgram = "seilfahrt" ;
29+ } ;
30+ }
You can’t perform that action at this time.
0 commit comments