aefffb674c
add `mainProgram` move package to `pkgs/by-name`
39 lines
852 B
Nix
39 lines
852 B
Nix
{ fetchCrate
|
|
, go-md2man
|
|
, installShellFiles
|
|
, lib
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "bk";
|
|
version = "0.6.0";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-rSMvx/zUZqRRgj48TVVG7RwQT8e70m0kertRJysDY4Y=";
|
|
};
|
|
|
|
cargoHash = "sha256-pE5loMwNMdHL3GODiw3kVVHj374hf3+vIDEYTqvx5WI=";
|
|
|
|
nativeBuildInputs = [ go-md2man installShellFiles ];
|
|
|
|
postBuild = ''
|
|
sed -i '$ a # Source and further info' README.md
|
|
sed -i '$ a https://github.com/aeosynth/bk' README.md
|
|
go-md2man -in README.md -out bk.1
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage bk.?
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/aeosynth/bk";
|
|
description = "A terminal epub reader written in rust";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ vuimuich ];
|
|
mainProgram = "bk";
|
|
};
|
|
}
|