python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / filesystems / encfs / default.nix
blob14701a615c01e7b5cad315858b9fc85bc13515ec
1 { lib, stdenv, fetchFromGitHub
2 , cmake, pkg-config, perl
3 , gettext, fuse, openssl, tinyxml2
4 }:
6 stdenv.mkDerivation rec {
7   pname = "encfs";
8   version = "1.9.5";
10   src = fetchFromGitHub {
11     sha256 = "099rjb02knr6yz7przlnyj62ic0ag5ncs7vvcc36ikyqrmpqsdch";
12     rev = "v${version}";
13     repo = "encfs";
14     owner = "vgough";
15   };
17   buildInputs = [ gettext fuse openssl tinyxml2 ];
18   nativeBuildInputs = [ cmake pkg-config perl ];
20   cmakeFlags =
21     [ "-DUSE_INTERNAL_TINYXML=OFF"
22       "-DBUILD_SHARED_LIBS=ON"
23       "-DINSTALL_LIBENCFS=ON"
24     ];
26   meta = with lib; {
27     description = "An encrypted filesystem in user-space via FUSE";
28     homepage = "https://vgough.github.io/encfs";
29     license = with licenses; [ gpl3Plus lgpl3Plus ];
30     platforms = platforms.unix;
31   };