Commit aefffb67 authored by VuiMuich's avatar VuiMuich Committed by Peter Hoeg
Browse files

bk: init at 0.6.0

add `mainProgram`

move package to `pkgs/by-name`
parent afaf6396
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
{ 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";
  };
}