python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / filesystems / mhddfs / default.nix
blob3a0d0ab2f65b52be045bc3489ca5bf6b2154538b
1 { lib, stdenv, fetchurl, fuse, pkg-config, attr, uthash }:
3 stdenv.mkDerivation rec {
4   pname = "mhddfs";
5   version = "0.1.39";
7   src = fetchurl {
8     url = "http://mhddfs.uvw.ru/downloads/mhddfs_${version}.tar.gz";
9     sha256 = "14ggmh91vv69fp2qpz0nxp0hprlw2wsijss2k2485hb0ci4cabvh";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ fuse attr uthash ];
15   patches = [
16     ./fix-format-security-error.patch
17   ];
19   postPatch = ''
20     substituteInPlace src/main.c --replace "attr/xattr.h" "sys/xattr.h"
21     substituteInPlace src/tools.c --replace "attr/xattr.h" "sys/xattr.h"
22   '';
24   installPhase = ''
25     mkdir -p $out/bin
26     cp mhddfs $out/bin/
27   '';
29   meta = {
30     homepage = "http://mhddfs.uvw.ru/";
31     description = "Combines a several mount points into the single one";
32     license = lib.licenses.gpl3;
33     maintainers = [ lib.maintainers.makefu ];
34   };