Unverified Commit 62ee57de authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

avfs: 1.2.0 -> 1.3.0 (#510688)

parents e6e30712 b37c629e
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -26754,6 +26754,12 @@
    githubId = 156964;
    name = "Thomas Boerger";
  };
  tbutter = {
    email = "tbutter@gmail.com";
    github = "tbutter";
    githubId = 1336537;
    name = "Thomas Butter";
  };
  tc-kaluza = {
    github = "tc-kaluza";
    githubId = 101565936;
+7 −5
Original line number Diff line number Diff line
@@ -5,14 +5,15 @@
  pkg-config,
  fuse,
  xz,
  zlib,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "avfs";
  version = "1.2.0";
  version = "1.3.0";
  src = fetchurl {
    url = "mirror://sourceforge/avf/${finalAttrs.version}/avfs-${finalAttrs.version}.tar.bz2";
    sha256 = "sha256-olqOxDwe4XJiThpMec5mobkwhBzbVFtyXx7GS8q+iJw=";
    sha256 = "sha256-B81p1MDH7QgOgP8EDZgChkBa04pEP9xS3Dle/vEcRLE=";
  };

  nativeBuildInputs = [ pkg-config ];
@@ -20,19 +21,20 @@ stdenv.mkDerivation (finalAttrs: {
  buildInputs = [
    fuse
    xz
    zlib
  ];

  configureFlags = [
    "--enable-library"
    "--enable-fuse"
  ];
  ]
  ++ lib.optional stdenv.hostPlatform.isDarwin "--with-system-zlib";

  meta = {
    homepage = "https://avf.sourceforge.net/";
    description = "Virtual filesystem that allows browsing of compressed files";
    platforms = lib.platforms.unix;
    license = lib.licenses.gpl2Only;
    # The last successful Darwin Hydra build was in 2024
    broken = stdenv.hostPlatform.isDarwin;
    maintainers = with lib.maintainers; [ tbutter ];
  };
})