compress-tools 0.12.0

Utility functions for compressed and archive files handling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs ? import <nixpkgs> {} }:

with pkgs;

stdenv.mkDerivation {
  name = "compress-tools";
  buildInputs = [
    rust-bindgen
    pkg-config
    libarchive
    clang
    llvmPackages.libclang
  ];
  # why do we need to set the library path manually?
  shellHook = ''
      export LIBCLANG_PATH="${llvmPackages.libclang}/lib";
  '';
}