depot/third_party/nixpkgs/pkgs/applications/misc/coolreader/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

27 lines
771 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";
license = licenses.gpl2Plus; # see https://github.com/buggins/coolreader/issues/80
maintainers = with maintainers; [ gebner ];
platforms = platforms.all;
};
}