biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / coolreader / default.nix
blob22e9906db561df32e2c780957d2316d3b51c318d
1 { stdenv, mkDerivation, fetchFromGitHub, cmake, pkg-config, lib,
2   qttools, fribidi, libunibreak }:
4 mkDerivation rec {
5   pname = "coolreader";
6   version = "3.2.57";
8   src = fetchFromGitHub {
9     owner = "buggins";
10     repo = pname;
11     rev = "cr${version}";
12     sha256 = "sha256-ZfgaLCLvBU6xP7nx7YJTsJSpvpdQgLpSMWH+BsG8E1g=";
13   };
15   nativeBuildInputs = [ cmake pkg-config ];
17   buildInputs = [ qttools fribidi libunibreak ];
19   meta = with lib; {
20     broken = stdenv.hostPlatform.isDarwin;
21     homepage = "https://github.com/buggins/coolreader";
22     description = "Cross platform open source e-book reader";
23     mainProgram = "cr3";
24     license = licenses.gpl2Plus; # see https://github.com/buggins/coolreader/issues/80
25     maintainers = with maintainers; [ gebner ];
26     platforms = platforms.all;
27   };