mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
archivemount: Migrate to by-name
This commit is contained in:
parent
51648b2f0b
commit
256d33ba46
@ -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";
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user