3 buildPythonApplication,
8 buildPythonApplication rec {
9 pname = "unrar-wrapper";
12 src = fetchFromGitHub {
14 repo = "unrar_wrapper";
15 rev = "unrar_wrapper-${version}";
16 sha256 = "sha256-HjrUif8MrbtLjRQMAPZ/Y2o43rGSDj0HHY4fZQfKz5w=";
23 "${lib.makeBinPath [ unar ]}"
27 ln -s $out/bin/unrar_wrapper $out/bin/unrar
28 rm -rf $out/nix-support/propagated-build-inputs
31 setupHook = ./setup-hook.sh;
34 homepage = "https://github.com/openSUSE/unrar_wrapper";
35 description = "Backwards compatibility between unar and unrar";
37 unrar_wrapper is a wrapper python script that transforms the basic UnRAR commands
38 to unar and lsar calls in order to provide a backwards compatibility.
40 license = licenses.gpl3Only;
41 platforms = platforms.unix;
42 maintainers = with maintainers; [ artturin ];