nixpkgs/pkgs/applications/misc/coolreader/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

29 lines
796 B
Nix

{ stdenv, mkDerivation, fetchFromGitHub, cmake, pkg-config, lib,
qttools, fribidi, libunibreak }:
mkDerivation rec {
pname = "coolreader";
version = "3.2.57";
src = fetchFromGitHub {
owner = "buggins";
repo = pname;
rev = "cr${version}";
sha256 = "sha256-ZfgaLCLvBU6xP7nx7YJTsJSpvpdQgLpSMWH+BsG8E1g=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ qttools fribidi libunibreak ];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/buggins/coolreader";
description = "Cross platform open source e-book reader";
mainProgram = "cr3";
license = licenses.gpl2Plus; # see https://github.com/buggins/coolreader/issues/80
maintainers = with maintainers; [ gebner ];
platforms = platforms.all;
};
}