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

chunkfs: 0.7 -> 0.8 (#399880)

parents 6f468acd 14126b33
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -6,13 +6,13 @@
  fuse,
}:

stdenv.mkDerivation rec {
  version = "0.7";
stdenv.mkDerivation (finalAttrs: {
  pname = "chunkfs";
  version = "0.8";

  src = fetchurl {
    url = "https://chunkfs.florz.de/chunkfs_${version}.tar.gz";
    sha256 = "4c168fc2b265a6ba34afc565707ea738f34375325763c0596f2cfa1c9b8d40f1";
    url = "https://chunkfs.florz.de/chunkfs_${finalAttrs.version}.tar.xz";
    hash = "sha256-HFv51ta2eNW9Qt9CUp2oTTlC8Lpwc1XKR/uYzMDfd88=";
  };

  buildInputs = [
@@ -32,8 +32,8 @@ stdenv.mkDerivation rec {

  meta = {
    description = "FUSE filesystems for viewing chunksync-style directory trees as a block device and vice versa";
    homepage = "http://chunkfs.florz.de/";
    homepage = "http://chunkfs.florz.de";
    license = lib.licenses.gpl2Plus;
    platforms = with lib.platforms; linux;
    platforms = lib.platforms.linux;
  };
}
})