archivemount: Migrate to by-name

This commit is contained in:
Keto 2024-09-27 22:25:00 -04:00
parent 51648b2f0b
commit 256d33ba46
No known key found for this signature in database
GPG Key ID: F256D023018D9970
2 changed files with 12 additions and 4 deletions

View File

@ -1,4 +1,11 @@
{ lib, stdenv, fetchurl, pkg-config, fuse, libarchive }:
{
lib,
stdenv,
fetchurl,
pkg-config,
fuse,
libarchive,
}:
stdenv.mkDerivation rec {
pname = "archivemount";
@ -10,7 +17,10 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ fuse libarchive ];
buildInputs = [
fuse
libarchive
];
meta = {
description = "Gateway between FUSE and libarchive: allows mounting of cpio, .tar.gz, .tar.bz2 archives";

View File

@ -3062,8 +3062,6 @@ with pkgs;
archivebox = callPackage ../applications/misc/archivebox { };
archivemount = callPackage ../tools/filesystems/archivemount { };
archivy = callPackage ../applications/misc/archivy { };
arandr = callPackage ../tools/X11/arandr { };