depot/third_party/nixpkgs/pkgs/development/libraries/libunarr/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

33 lines
790 B
Nix

{ lib
, stdenv
, fetchurl
, cmake
}:
stdenv.mkDerivation rec {
pname = "libunarr";
version = "1.1.1";
src = fetchurl {
url = "https://github.com/selmf/unarr/releases/download/v${version}/unarr-${version}.tar.xz";
hash = "sha256-Mo76BOqZbdOJFrEkeozxdqwpuFyvkhdONNMZmN5BdNI=";
};
postPatch = lib.optionalString stdenv.isDarwin ''
substituteInPlace CMakeLists.txt \
--replace "-flto" "" \
--replace "AppleClang" "Clang"
'';
nativeBuildInputs = [
cmake
];
meta = with lib; {
homepage = "https://github.com/selmf/unarr";
description = "Lightweight decompression library with support for rar, tar and zip archives";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ wegank ];
platforms = platforms.unix;
};
}