depot/third_party/nixpkgs/pkgs/tools/filesystems/rar2fs/default.nix
Default email 98eb3e9ef5 Project import generated by Copybara.
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
2024-07-01 15:47:52 +00:00

40 lines
854 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, fuse2
, unrar
}:
stdenv.mkDerivation rec {
pname = "rar2fs";
version = "1.29.7";
src = fetchFromGitHub {
owner = "hasse69";
repo = pname;
rev = "v${version}";
sha256 = "sha256-iYlmNtaJZrnsNNNlaoV1Vu6PHrHIr/glhgs3784JCm4=";
};
postPatch = ''
substituteInPlace get-version.sh \
--replace "which echo" "echo"
'';
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ fuse2 unrar ];
configureFlags = [
"--with-unrar=${unrar.src}/unrar"
"--disable-static-unrar"
];
meta = with lib; {
description = "FUSE file system for reading RAR archives";
homepage = "https://hasse69.github.io/rar2fs/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ kraem wegank ];
platforms = with platforms; linux ++ freebsd;
};
}