From 28788423542ce545f81af1f08f142d3fa336b8cf Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Fri, 26 Nov 2021 14:36:16 +0100 Subject: [PATCH] httpdirfs: drop It has been added to nixpkgs: https://github.com/NixOS/nixpkgs/pull/147182 --- default.nix | 2 -- flake.nix | 1 - httpdirfs/default.nix | 26 -------------------------- 3 files changed, 29 deletions(-) delete mode 100644 httpdirfs/default.nix diff --git a/default.nix b/default.nix index 8277f40..1bb0b3f 100644 --- a/default.nix +++ b/default.nix @@ -31,8 +31,6 @@ in hcloud_exporter = callPackage ./hcloud_exporter { }; - httpdirfs = callPackage ./httpdirfs { }; - mpvScripts = prev.mpvScripts // { pitchcontrol = callPackage ./mpv-scripts/pitchcontrol { }; }; diff --git a/flake.nix b/flake.nix index 65c0f50..59c95c5 100644 --- a/flake.nix +++ b/flake.nix @@ -54,7 +54,6 @@ face_morpher gust_tools hcloud_exporter - httpdirfs netstick nsz oha diff --git a/httpdirfs/default.nix b/httpdirfs/default.nix deleted file mode 100644 index eefde72..0000000 --- a/httpdirfs/default.nix +++ /dev/null @@ -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; - }; -}