mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 16:53:40 +00:00
Merge pull request #222502 from clerie/clerie/ghosttohugo-0.5.3
This commit is contained in:
commit
eb9ffb32c7
25
pkgs/applications/misc/ghosttohugo/default.nix
Normal file
25
pkgs/applications/misc/ghosttohugo/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "ghosttohugo";
|
||||
version = "0.5.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jbarone";
|
||||
repo = "ghostToHugo";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-lYqjwLPvSX9/HaFvSwtkvxbCToTwfDPeVivNfazZwQA=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-/7MsVLVek2nQwf8rVJQywBKiIOCGe72L45CkAElXrMo=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Convert Ghost export to Hugo posts";
|
||||
homepage = "https://github.com/jbarone/ghostToHugo";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ clerie ];
|
||||
};
|
||||
}
|
@ -32640,6 +32640,8 @@ with pkgs;
|
||||
|
||||
hugo = callPackage ../applications/misc/hugo { };
|
||||
|
||||
ghosttohugo = callPackage ../applications/misc/ghosttohugo {};
|
||||
|
||||
gatekeeper = callPackage ../applications/networking/cluster/gatekeeper { };
|
||||
|
||||
go-org = callPackage ../applications/misc/go-org { };
|
||||
|
Loading…
Reference in New Issue
Block a user