biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / ghosttohugo / default.nix
blob5ec5cc6870cae6987fb7c07d6c3971213932b4a2
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "ghosttohugo";
8   version = "0.5.3";
10   src = fetchFromGitHub {
11     owner = "jbarone";
12     repo = "ghostToHugo";
13     rev = "v${version}";
14     hash = "sha256-lYqjwLPvSX9/HaFvSwtkvxbCToTwfDPeVivNfazZwQA=";
15   };
17   vendorHash = "sha256-/7MsVLVek2nQwf8rVJQywBKiIOCGe72L45CkAElXrMo=";
19   meta = with lib; {
20     description = "Convert Ghost export to Hugo posts";
21     homepage = "https://github.com/jbarone/ghostToHugo";
22     license = licenses.mit;
23     maintainers = with maintainers; [ clerie ];
24     mainProgram = "ghostToHugo";
25   };