seilfahrt: init at 1.0.2
This commit is contained in:
parent
7a2f64c491
commit
de4366e875
30
pkgs/by-name/se/seilfahrt/package.nix
Normal file
30
pkgs/by-name/se/seilfahrt/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user