summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2020-05-23 15:21:25 -0700
committerGitHub <noreply@github.com>2020-05-23 15:21:25 -0700
commitfcea6915102e889997c1557f1773156214feaaef (patch)
tree144ba3de004e079959ccccc802365009309e86c1 /pkgs/tools/filesystems
parent3918f1611d21a1f86024ffe6a702945306e9eb42 (diff)
parentd23ef21b37340ade433586ef5b392e33f4520fa4 (diff)
downloadnixpkgs-fcea6915102e889997c1557f1773156214feaaef.tar
nixpkgs-fcea6915102e889997c1557f1773156214feaaef.tar.gz
nixpkgs-fcea6915102e889997c1557f1773156214feaaef.tar.bz2
nixpkgs-fcea6915102e889997c1557f1773156214feaaef.tar.lz
nixpkgs-fcea6915102e889997c1557f1773156214feaaef.tar.xz
nixpkgs-fcea6915102e889997c1557f1773156214feaaef.tar.zst
nixpkgs-fcea6915102e889997c1557f1773156214feaaef.zip
Merge pull request #86790 from r-ryantm/auto-update/archivemount
archivemount: 0.8.12 -> 0.9.1
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/archivemount/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/archivemount/default.nix b/pkgs/tools/filesystems/archivemount/default.nix
index 18bde25267d..d1d4ba6adf1 100644
--- a/pkgs/tools/filesystems/archivemount/default.nix
+++ b/pkgs/tools/filesystems/archivemount/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl, pkgconfig, fuse, libarchive }:
 
 let
-  name = "archivemount-0.8.12";
+  name = "archivemount-0.9.1";
 in
 stdenv.mkDerivation {
   inherit name;
 
   src = fetchurl {
     url = "https://www.cybernoia.de/software/archivemount/${name}.tar.gz";
-    sha256 = "12fb8fcmd1zwvfgzx4pay47md5cr2kgxcgq82cm6skmq75alfzi4";
+    sha256 = "1cy5b6qril9c3ry6fv7ir87s8iyy5vxxmbyx90dm86fbra0vjaf5";
   };
 
   nativeBuildInputs = [ pkgconfig ];