evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / mh / mhddfs / package.nix
blob58986c25dbf272aaf2dfc5c097f5bcb01314dfd2
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 = "https://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 = "https://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     mainProgram = "mhddfs";
35   };