31 lines
1 KiB
Nix
31 lines
1 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libunarr";
|
|
version = "1.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/selmf/unarr/releases/download/v${version}/unarr-${version}.tar.xz";
|
|
sha256 = "1db500k6w90qn6qb4j3zcczailmmv81q9lv4bwq516hbncg5p4sl";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
# https://github.com/selmf/unarr/issues/23
|
|
postPatch = ''
|
|
substituteInPlace pkg-config.pc.cmake \
|
|
--replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ \
|
|
--replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@
|
|
''
|
|
# ld: unknown option: --no-undefined
|
|
+ lib.optionalString stdenv.isDarwin ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace '-Wl,--no-undefined -Wl,--as-needed' '-Wl,-undefined,error'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/selmf/unarr";
|
|
description = "A lightweight decompression library with support for rar, tar and zip archives";
|
|
license = licenses.lgpl3Plus;
|
|
};
|
|
}
|