Unverified Commit b61e00d7 authored by Michael Daniels's avatar Michael Daniels
Browse files

lizardfs: drop

Has been marked broken for a full release cycle.

Dropping per RFC 180.
parent 958efcec
Loading
Loading
Loading
Loading
+0 −70
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  cmake,
  makeWrapper,
  python3,
  db,
  fuse,
  asciidoc,
  libxml2,
  libxslt,
  docbook_xml_dtd_412,
  docbook_xsl,
  boost,
  pkg-config,
  judy,
  pam,
  spdlog,
  systemdMinimal,
  zlib, # optional
}:

stdenv.mkDerivation rec {
  pname = "lizardfs";
  version = "3.13.0-rc3";

  src = fetchFromGitHub {
    owner = "lizardfs";
    repo = "lizardfs";
    rev = version;
    sha256 = "sha256-rgaFhJvmA1RVDL4+vQLMC0GrdlgUlvJeZ5/JJ67C20Q=";
  };

  nativeBuildInputs = [
    cmake
    pkg-config
    makeWrapper
  ];

  buildInputs = [
    db
    fuse
    asciidoc
    libxml2
    libxslt
    docbook_xml_dtd_412
    docbook_xsl
    zlib
    boost
    judy
    pam
    spdlog
    python3
    systemdMinimal
  ];

  meta = with lib; {
    homepage = "https://lizardfs.com";
    description = "Highly reliable, scalable and efficient distributed file system";
    platforms = platforms.linux;
    license = licenses.gpl3;
    maintainers = with maintainers; [
      rushmorem
      shamilton
    ];
    # 'fprintf' was not declared in this scope
    broken = true;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1488,6 +1488,8 @@ mapAliases {

  lixVersions = lixPackageSets.renamedDeprecatedLixVersions; # Added 2025-03-20, warning in ../tools/package-management/lix/default.nix

  lizardfs = throw "lizardfs has been removed because it has been marked as broken since at least November 2024."; # Added 2025-09-28

  llvmPackages_git = (callPackages ../development/compilers/llvm { }).git; # Added 2024-08-02

  llvmPackages_9 = throw "llvmPackages_9 has been removed from nixpkgs"; # Added 2024-04-08