summary refs log tree commit diff
path: root/pkgs/tools/filesystems/squashfuse
diff options
context:
space:
mode:
authorBignaux Ronan <ronan@aimao.org>2018-02-20 13:06:26 +0100
committerRok Garbas <rok@garbas.si>2018-03-09 22:35:57 +0100
commit5c2523272864e498f42485ce13231c7c266c7f0d (patch)
treeb9f98325ea5d5b93a27577b12ad0726256649264 /pkgs/tools/filesystems/squashfuse
parent6f8176ac4382781b4497cbb69ff6e0a1d798eedc (diff)
downloadnixpkgs-5c2523272864e498f42485ce13231c7c266c7f0d.tar
nixpkgs-5c2523272864e498f42485ce13231c7c266c7f0d.tar.gz
nixpkgs-5c2523272864e498f42485ce13231c7c266c7f0d.tar.bz2
nixpkgs-5c2523272864e498f42485ce13231c7c266c7f0d.tar.lz
nixpkgs-5c2523272864e498f42485ce13231c7c266c7f0d.tar.xz
nixpkgs-5c2523272864e498f42485ce13231c7c266c7f0d.tar.zst
nixpkgs-5c2523272864e498f42485ce13231c7c266c7f0d.zip
squashfuse: init at unstable-2018-02-20
Diffstat (limited to 'pkgs/tools/filesystems/squashfuse')
-rw-r--r--pkgs/tools/filesystems/squashfuse/default.nix17
1 files changed, 4 insertions, 13 deletions
diff --git a/pkgs/tools/filesystems/squashfuse/default.nix b/pkgs/tools/filesystems/squashfuse/default.nix
index c3978e7a55c..341b025b079 100644
--- a/pkgs/tools/filesystems/squashfuse/default.nix
+++ b/pkgs/tools/filesystems/squashfuse/default.nix
@@ -6,10 +6,8 @@ with stdenv.lib;
 stdenv.mkDerivation rec {
 
   pname = "squashfuse";
-  version = "0.1.101";
-  rev = "371e4bee9caa254d842913df9bdbcc795c5b342c";
-  short_rev = "${builtins.substring 0 7 rev}";
-  name = "${pname}-${version}-${short_rev}";
+  version = "unstable-2018-02-20";
+  name = "${pname}-${version}";
 
   meta = {
     description = "FUSE filesystem to mount squashfs archives";
@@ -26,17 +24,10 @@ stdenv.mkDerivation rec {
   src = fetchFromGitHub {
     owner = "vasi";
     repo  = "${pname}";
-    rev = "${rev}";
-    sha256 = "0i9p8r1c128hzy0cwmga1x7q8zk7kw68mh8li5ipfz8zba60d7vz";
+    rev = "3f4a93f373796e88f7eee3a0c005ef60cb395d30";
+    sha256 = "07jv4qjjz9ky3mw3p5prgs19g1bna9dcd7jjdz8083s1wyipdgcq";
   };
 
-  patches = [
-	(fetchpatch {
-	  url = "https://github.com/vasi/squashfuse/commit/0c44cb2abe402d6e352dd47ac8b7e7495c7c2a6f.patch";
-	  sha256 = "0z53p7pi3ap05n0bxhmka4sz12cw2cjjvc7xn9jppbyynfzx32m0";
-	})
-  ];
-
   nativeBuildInputs = [ autoreconfHook libtool pkgconfig ];
   buildInputs = [ lz4 xz zlib lzo zstd fuse ];
 }