Skip to content

Commit 5efce4f

Browse files
authored
seilfahrt: init at 1.0.2 (#283819)
2 parents 39b71cd + de4366e commit 5efce4f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
}

0 commit comments

Comments
 (0)