2019-11-13 21:58:39 +01:00
|
|
|
{ stdenv, fetchurl, cmake, perl, zlib }:
|
2007-11-11 17:19:00 +01:00
|
|
|
|
2012-02-09 15:09:08 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libzip";
|
2020-01-27 10:29:43 +01:00
|
|
|
version = "1.6.0";
|
2015-04-06 12:11:51 +02:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://www.nih.at/libzip/${pname}-${version}.tar.gz";
|
2020-01-27 10:29:43 +01:00
|
|
|
sha256 = "1zsspz6cbbqah11jkcc894jgxihlm8gicfh54yvny9gc3lsvpi3h";
|
2009-04-22 01:18:09 +02:00
|
|
|
};
|
2015-04-06 12:11:51 +02:00
|
|
|
|
2019-11-13 21:58:39 +01:00
|
|
|
# Fix pkgconfig file paths
|
2018-08-08 20:55:33 +02:00
|
|
|
postPatch = ''
|
2019-11-13 21:58:39 +01:00
|
|
|
sed -i CMakeLists.txt \
|
|
|
|
-e 's#\\''${exec_prefix}/''${CMAKE_INSTALL_LIBDIR}#''${CMAKE_INSTALL_FULL_LIBDIR}#' \
|
|
|
|
-e 's#\\''${prefix}/''${CMAKE_INSTALL_INCLUDEDIR}#''${CMAKE_INSTALL_FULL_INCLUDEDIR}#'
|
2018-08-08 20:55:33 +02:00
|
|
|
'';
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-25 13:51:29 +02:00
|
|
|
|
2019-11-13 21:58:39 +01:00
|
|
|
nativeBuildInputs = [ cmake perl ];
|
2012-02-09 15:22:13 +01:00
|
|
|
propagatedBuildInputs = [ zlib ];
|
2007-11-11 17:19:00 +01:00
|
|
|
|
2018-08-08 20:55:33 +02:00
|
|
|
preCheck = ''
|
2019-11-13 21:58:39 +01:00
|
|
|
# regress/runtest is a generated file
|
2018-08-08 20:55:33 +02:00
|
|
|
patchShebangs regress
|
2016-04-27 02:46:36 +02:00
|
|
|
'';
|
|
|
|
|
2018-08-09 11:13:29 +02:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 20:42:46 +01:00
|
|
|
homepage = https://www.nih.at/libzip;
|
2009-04-22 01:18:09 +02:00
|
|
|
description = "A C library for reading, creating and modifying zip archives";
|
2018-08-09 11:13:29 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.unix;
|
2009-04-22 01:18:09 +02:00
|
|
|
};
|
2007-11-11 17:19:00 +01:00
|
|
|
}
|