forked from mirrors/nixpkgs
allmark: init at 0.10.0
We are using buildGoPackage, because upstream is not a module: see andreaskoch/allmark#36. Fixes #206256
This commit is contained in:
parent
2901df4b75
commit
28354ec5d1
27
pkgs/servers/allmark/default.nix
Normal file
27
pkgs/servers/allmark/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ buildGoPackage, fetchFromGitHub, lib }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "allmark";
|
||||
version = "0.10.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "andreaskoch";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-JfNn/e+cSq1pkeXs7A2dMsyhwOnh7x2bwm6dv6NOjLU=";
|
||||
};
|
||||
|
||||
goPackagePath = "github.com/andreaskoch/allmark";
|
||||
|
||||
postInstall = ''
|
||||
mv $out/bin/{cli,allmark}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A cross-platform markdown web server";
|
||||
homepage = "https://allmark.io";
|
||||
changelog = "https://github.com/andreaskoch/allmark/-/releases/v${version}";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ urandom ];
|
||||
};
|
||||
}
|
|
@ -23679,6 +23679,8 @@ with pkgs;
|
|||
|
||||
alerta-server = callPackage ../servers/monitoring/alerta { };
|
||||
|
||||
allmark = callPackage ../servers/allmark {};
|
||||
|
||||
alps = callPackage ../servers/alps { };
|
||||
|
||||
apache-directory-server = callPackage ../servers/ldap/apache-directory-server {};
|
||||
|
|
Loading…
Reference in a new issue