evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / go-org / package.nix
blob4b0a2a9c41a7b12d7be9a7d7f77741bac2f619bc
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "go-org";
5   version = "1.7.0";
7   src = fetchFromGitHub {
8     owner = "niklasfasching";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-BPCQxl0aJ9PrEC5o5dc5uBbX8eYAxqB+qMLXo1LwCoA=";
12   };
14   vendorHash = "sha256-HbNYHO+tqFEs9VXdxyA+r/7mM/p+NBn8PomT8JAyKR8=";
16   postInstallCheck = ''
17     $out/bin/go-org > /dev/null
18   '';
20   meta = with lib; {
21     description = "Org-mode parser and static site generator in go";
22     homepage = "https://niklasfasching.github.io/go-org";
23     license = licenses.mit;
24     maintainers = with maintainers; [ bhankas ];
25     mainProgram = "go-org";
26   };