3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/allmark/default.nix
Colin Arnott 28354ec5d1
allmark: init at 0.10.0
We are using buildGoPackage, because upstream is not a module: see
andreaskoch/allmark#36.

Fixes #206256
2022-12-27 09:40:43 +00:00

28 lines
667 B
Nix

{ 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 ];
};
}