lol

httpdirfs: init at 1.2.2 (#147182)

Co-authored-by: Simon Bruder <simon@sbruder.de>

authored by

schnusch
Simon Bruder
and committed by
GitHub
732b04ba fd726b9a

+28
+26
pkgs/tools/filesystems/httpdirfs/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, pkg-config, curl, expat, fuse, gumbo, libuuid }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "httpdirfs"; 5 + version = "1.2.3"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "fangfufu"; 9 + repo = pname; 10 + rev = version; 11 + sha256 = "sha256-rdeBlAV3t/si9x488tirUGLZRYAxh13zdRIQe0OPd+A="; 12 + }; 13 + 14 + nativeBuildInputs = [ pkg-config ]; 15 + buildInputs = [ curl expat fuse gumbo libuuid ]; 16 + 17 + makeFlags = [ "prefix=${placeholder "out"}" ]; 18 + 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 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 6317 6317 6318 6318 http-getter = callPackage ../applications/networking/flent/http-getter.nix { }; 6319 6319 6320 + httpdirfs = callPackage ../tools/filesystems/httpdirfs { }; 6321 + 6320 6322 httpdump = callPackage ../tools/security/httpdump { }; 6321 6323 6322 6324 httpie = callPackage ../tools/networking/httpie { };