mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
27 lines
733 B
Nix
27 lines
733 B
Nix
{ 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; {
|
|
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;
|
|
};
|
|
}
|