treewide: cmake buildInputs to nativeBuildInputs, minor cleanups
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, cmake, pkgconfig, libxml2, libzip }:
|
||||
{ stdenv, fetchurl, cmake, pkg-config, libxml2, libzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ebook-tools-0.2.2";
|
||||
@@ -8,18 +8,19 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1bi7wsz3p5slb43kj7lgb3r6lb91lvb6ldi556k4y50ix6b5khyb";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ cmake libxml2 libzip ];
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
buildInputs = [ libxml2 libzip ];
|
||||
|
||||
preConfigure =
|
||||
preConfigure =
|
||||
''
|
||||
NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags libzip)"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://ebook-tools.sourceforge.net";
|
||||
description = "Tools and library for dealing with various ebook file formats";
|
||||
maintainers = [ ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
platforms = platforms.all;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user