base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / li / libepubgen / package.nix
blobec0901ec43855315364009101957bfbd3792172c
1 { lib
2 , stdenv
3 , fetchgit
4 , autoreconfHook
5 , pkg-config
6 , boost
7 , cppunit
8 , librevenge
9 , libxml2
12 stdenv.mkDerivation rec {
13   pname = "libepubgen";
14   version = "0.1.1";
16   src = fetchgit {
17     url = "https://git.code.sf.net/p/libepubgen/code";
18     rev = "libepubgen-${version}";
19     hash = "sha256-wPpU8Sfhx9GIgDmT/otT5yV4iQKm9QPZqgSBTfFcbbg=";
20   };
22   nativeBuildInputs = [
23     autoreconfHook
24     pkg-config
25   ];
27   buildInputs = [
28     boost
29     cppunit
30     librevenge
31     libxml2
32   ];
34   meta = with lib; {
35     description = "EPUB generator for librevenge";
36     homepage = "https://sourceforge.net/projects/libepubgen/";
37     license = licenses.mpl20;
38     maintainers = [ ];
39     platforms = platforms.all;
40   };