nixpkgs/pkgs/applications/misc/go-org/default.nix

27 lines
643 B
Nix
Raw Normal View History

2021-03-21 05:45:51 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "go-org";
2021-04-15 16:24:55 +00:00
version = "1.5.0";
2021-03-21 05:45:51 +00:00
src = fetchFromGitHub {
owner = "niklasfasching";
repo = pname;
rev = "v${version}";
2021-04-15 16:24:55 +00:00
sha256 = "sha256-Wp8WEfRcrtn+VdcbehYcOJI5FkPQiyo6nLsTDvR7riE=";
2021-03-21 05:45:51 +00:00
};
vendorSha256 = "sha256-njx89Ims7GZql8sbVmH/E9gM/ONRWiPRLVs+FzsCSzI=";
postInstallCheck = ''
$out/bin/go-org > /dev/null
'';
meta = with lib; {
description = "Org-mode parser and static site generator in go";
homepage = "https://niklasfasching.github.io/go-org";
license = licenses.mit;
maintainers = with maintainers; [ payas ];
};
}