about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/ebook-tools/default.nix
blob: 1a46110e2a42b5ae5bb9cf20c4cf465e9cc23648 (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
{ lib, stdenv, fetchurl, cmake, pkg-config, libxml2, libzip }:

stdenv.mkDerivation rec {
  pname = "ebook-tools";
  version = "0.2.2";

  src = fetchurl {
    url = "mirror://sourceforge/ebook-tools/ebook-tools-${version}.tar.gz";
    sha256 = "1bi7wsz3p5slb43kj7lgb3r6lb91lvb6ldi556k4y50ix6b5khyb";
  };

  nativeBuildInputs = [ cmake pkg-config ];
  buildInputs = [ libxml2 libzip ];

  preConfigure =
    ''
      NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags libzip)"
    '';

  meta = with lib; {
    homepage = "http://ebook-tools.sourceforge.net";
    description = "Tools and library for dealing with various ebook file formats";
    maintainers = [ ];
    platforms = platforms.all;
    license = licenses.mit;
  };
}