nixpkgs/pkgs/by-name/se/seilfahrt/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
730 B
Nix
Raw Normal View History

2024-01-25 19:28:26 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, pandoc
}:
buildGoModule rec {
pname = "seilfahrt";
2024-11-21 05:56:26 +00:00
version = "2.1.0";
2024-01-25 19:28:26 +00:00
src = fetchFromGitHub {
owner = "Nerdbergev";
repo = "seilfahrt";
rev = "v${version}";
2024-11-21 05:56:26 +00:00
hash = "sha256-w3r/mNb4en32huHjJbYghqDi/VsPGXinwUAfSMcuc+0=";
2024-01-25 19:28:26 +00:00
};
2024-11-21 05:56:26 +00:00
vendorHash = "sha256-wYxQHr8AVi5KGMqRJcb2rTtbnJbi5som29YSILlO6Po=";
2024-01-25 19:28:26 +00:00
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";
};
}