mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
go-org: init at 1.4.0
This commit is contained in:
parent
27f1e2b7b1
commit
e468ecbf8a
2 changed files with 28 additions and 0 deletions
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 ];
|
||||
};
|
||||
}
|
|
@ -23146,6 +23146,8 @@ in
|
|||
|
||||
hugo = callPackage ../applications/misc/hugo { };
|
||||
|
||||
go-org = callPackage ../applications/misc/go-org { };
|
||||
|
||||
hydrogen = qt5.callPackage ../applications/audio/hydrogen { };
|
||||
hydrogen_0 = callPackage ../applications/audio/hydrogen/0.nix { }; # Old stable, has GMKit.
|
||||
|
||||
|
|
Loading…
Reference in a new issue