Merge pull request #117100 from payasrelekar/go-org
go-org: init at 1.4.0
This commit is contained in:
commit
bf4c145531
26
pkgs/applications/misc/go-org/default.nix
Normal file
26
pkgs/applications/misc/go-org/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, fetchFromGitHub, buildGoModule }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "go-org";
|
||||||
|
version = "1.4.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "niklasfasching";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-nMZzRbu3lxunIlnnmb49Ljt8oSiYpj+8gZ0u/OFRRDM=";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -23151,6 +23151,8 @@ in
|
|||||||
|
|
||||||
hugo = callPackage ../applications/misc/hugo { };
|
hugo = callPackage ../applications/misc/hugo { };
|
||||||
|
|
||||||
|
go-org = callPackage ../applications/misc/go-org { };
|
||||||
|
|
||||||
hydrogen = qt5.callPackage ../applications/audio/hydrogen { };
|
hydrogen = qt5.callPackage ../applications/audio/hydrogen { };
|
||||||
hydrogen_0 = callPackage ../applications/audio/hydrogen/0.nix { }; # Old stable, has GMKit.
|
hydrogen_0 = callPackage ../applications/audio/hydrogen/0.nix { }; # Old stable, has GMKit.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user