0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

chunkfs: 0.7 -> 0.8

This commit is contained in:
emaryn 2025-04-19 07:01:43 +08:00
parent 52c2d78640
commit 14126b336b

View file

@ -6,13 +6,13 @@
fuse, fuse,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
version = "0.7";
pname = "chunkfs"; pname = "chunkfs";
version = "0.8";
src = fetchurl { src = fetchurl {
url = "https://chunkfs.florz.de/chunkfs_${version}.tar.gz"; url = "https://chunkfs.florz.de/chunkfs_${finalAttrs.version}.tar.xz";
sha256 = "4c168fc2b265a6ba34afc565707ea738f34375325763c0596f2cfa1c9b8d40f1"; hash = "sha256-HFv51ta2eNW9Qt9CUp2oTTlC8Lpwc1XKR/uYzMDfd88=";
}; };
buildInputs = [ buildInputs = [
@ -32,8 +32,8 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "FUSE filesystems for viewing chunksync-style directory trees as a block device and vice versa"; 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; license = lib.licenses.gpl2Plus;
platforms = with lib.platforms; linux; platforms = lib.platforms.linux;
}; };
} })