9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
26 lines
670 B
Nix
26 lines
670 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, libtool, fuse,
|
|
pkg-config, lz4, xz, zlib, lzo, zstd }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "squashfuse";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vasi";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-agapkSl4KEK+7MA2+gcfaXv6+rpG0MQAhAG5At9rXqk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook libtool pkg-config ];
|
|
buildInputs = [ lz4 xz zlib lzo zstd fuse ];
|
|
|
|
meta = {
|
|
description = "FUSE filesystem to mount squashfs archives";
|
|
homepage = "https://github.com/vasi/squashfuse";
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.unix;
|
|
license = "BSD-2-Clause";
|
|
};
|
|
}
|