httpdirfs: drop

It has been added to nixpkgs: https://github.com/NixOS/nixpkgs/pull/147182
master
Simon Bruder 2021-11-26 14:36:16 +01:00
parent 10a4f897fc
commit 2878842354
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
3 changed files with 0 additions and 29 deletions

View File

@ -31,8 +31,6 @@ in
hcloud_exporter = callPackage ./hcloud_exporter { };
httpdirfs = callPackage ./httpdirfs { };
mpvScripts = prev.mpvScripts // {
pitchcontrol = callPackage ./mpv-scripts/pitchcontrol { };
};

View File

@ -54,7 +54,6 @@
face_morpher
gust_tools
hcloud_exporter
httpdirfs
netstick
nsz
oha

View File

@ -1,26 +0,0 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, curl, expat, fuse, gumbo, libuuid }:
stdenv.mkDerivation rec {
pname = "httpdirfs";
version = "1.2.2";
src = fetchFromGitHub {
owner = "fangfufu";
repo = pname;
rev = version;
sha256 = "sha256-IR+keGTEr1bPW6NIa7msH8DhwXrO6k1oGKdhe9Zl/pI=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ curl expat fuse gumbo libuuid ];
makeFlags = [ "prefix=${placeholder "out"}" ];
meta = with lib; {
description = "A FUSE filesystem for HTTP directory listings";
homepage = "https://github.com/fangfufu/httpdirfs";
license = licenses.gpl3Only;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.unix;
};
}