7 stdenv.mkDerivation rec {
12 url = "https://github.com/selmf/unarr/releases/download/v${version}/unarr-${version}.tar.xz";
13 hash = "sha256-Mo76BOqZbdOJFrEkeozxdqwpuFyvkhdONNMZmN5BdNI=";
16 postPatch = lib.optionalString stdenv.isDarwin ''
17 substituteInPlace CMakeLists.txt \
18 --replace "-flto" "" \
19 --replace "AppleClang" "Clang"
27 homepage = "https://github.com/selmf/unarr";
28 description = "A lightweight decompression library with support for rar, tar and zip archives";
29 license = licenses.lgpl3Plus;
30 maintainers = with maintainers; [ wegank ];
31 platforms = platforms.unix;