python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / filesystems / httpdirfs / default.nix
blobe027d5dd8df527a1545ce20f70cf3e956b4de6b5
1 { lib, stdenv, fetchFromGitHub, pkg-config, curl, expat, fuse, gumbo, libuuid }:
3 stdenv.mkDerivation rec {
4   pname = "httpdirfs";
5   version = "1.2.3";
7   src = fetchFromGitHub {
8     owner = "fangfufu";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-rdeBlAV3t/si9x488tirUGLZRYAxh13zdRIQe0OPd+A=";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ curl expat fuse gumbo libuuid ];
17   makeFlags = [ "prefix=${placeholder "out"}" ];
19   meta = with lib; {
20     description = "A FUSE filesystem for HTTP directory listings";
21     homepage = "https://github.com/fangfufu/httpdirfs";
22     license = licenses.gpl3Only;
23     maintainers = with maintainers; [ sbruder schnusch ];
24     platforms = platforms.unix;
25   };