summary refs log tree commit diff
path: root/pkgs/applications/misc/fbreader/default.nix
blob: 6fa34a008e770f9f118fc98f632ca04a25fa47b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv, fetchurl, pkgconfig, bzip2, curl, expat, fribidi
, libunibreak, qt4, sqlite, zlib }:

stdenv.mkDerivation {
  name = "fbreader-0.99.4";

  src = fetchurl {
    url = https://fbreader.org/files/desktop/fbreader-sources-0.99.4.tgz;
    sha256 = "1sdq3vvwkq4bkyrvh0p884d66gaddz8hlab3m798ji9ixbak2z1x";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [
    bzip2 curl expat fribidi libunibreak
    qt4 sqlite zlib
  ];

  makeFlags = "INSTALLDIR=$(out)";

  NIX_CFLAGS_COMPILE = [ "-Wno-error=narrowing" ]; # since gcc-6

  patchPhase = ''
    # don't try to use ccache
    substituteInPlace makefiles/arch/desktop.mk \
      --replace "CCACHE = " "# CCACHE = "

    substituteInPlace fbreader/desktop/Makefile \
      --replace "/usr/share" "$out/share"
  '';

  meta = with stdenv.lib; {
    description = "An e-book reader for Linux";
    homepage = http://www.fbreader.org/;
    license = licenses.gpl3;
    platforms = platforms.linux; # possibly also on unix general
    maintainers = [ maintainers.coroa ];
  }; 
}