seilfahrt: init at 1.0.2

This commit is contained in:
Peter Lehmann 2024-01-25 19:28:26 +00:00 committed by Peter Lehmann
parent 7a2f64c491
commit de4366e875

View File

@ -0,0 +1,30 @@
{ lib
, buildGoModule
, fetchFromGitHub
, pandoc
}:
buildGoModule rec {
pname = "seilfahrt";
version = "1.0.2";
src = fetchFromGitHub {
owner = "Nerdbergev";
repo = "seilfahrt";
rev = "v${version}";
hash = "sha256-2nbBG/LIx1JDUzxyASvM/5hAI2JbBRDuv8Jub+yTwdA=";
};
vendorHash = "sha256-JU77EFk8SWgZkN4DEtkKS2MsBH16my4j9X/NJC/r6mI=";
buildInputs = [ pandoc ];
meta = with lib; {
description = "Tool to create a wiki page from a HedgeDoc";
homepage = "https://github.com/Nerdbergev/seilfahrt";
changelog = "https://github.com/Nerdbergev/seilfahrt/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ xgwq ];
mainProgram = "seilfahrt";
};
}