mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
coolreader: init at 3.2.45
This commit is contained in:
parent
be5c6c4425
commit
785df3a85a
26
pkgs/applications/misc/coolreader/default.nix
Normal file
26
pkgs/applications/misc/coolreader/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ mkDerivation, fetchFromGitHub, cmake, pkg-config, lib,
|
||||
qttools, fribidi, libunibreak }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "coolreader";
|
||||
version = "3.2.45";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "buggins";
|
||||
repo = pname;
|
||||
rev = "cr${version}";
|
||||
sha256 = "0nkk4d0j04yjwanjszq8h8hvx87rnwax2k6akm4bpjxwpcs4icws";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
|
||||
buildInputs = [ qttools fribidi libunibreak ];
|
||||
|
||||
meta = with lib; {
|
||||
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;
|
||||
};
|
||||
}
|
@ -935,6 +935,8 @@ in
|
||||
|
||||
codespell = with python3Packages; toPythonApplication codespell;
|
||||
|
||||
coolreader = libsForQt5.callPackage ../applications/misc/coolreader {};
|
||||
|
||||
cozy = callPackage ../applications/audio/cozy-audiobooks { };
|
||||
|
||||
ctrtool = callPackage ../tools/archivers/ctrtool { };
|
||||
|
Loading…
Reference in New Issue
Block a user