nixpkgs/pkgs/servers/allmark/default.nix
Colin Arnott dd9fa84766
allmark: fix homepage
The website listed on github.com currently returns a 401, so probably
best to just use the repo as the landing page.
2022-12-30 00:01:00 +00:00

28 lines
687 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://github.com/andreaskoch/allmark";
changelog = "https://github.com/andreaskoch/allmark/-/releases/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ urandom ];
};
}