Merge pull request #52737 from etu/init-fsarchiver

fsarchiver: init at 0.8.5
This commit is contained in:
Maximilian Bosch 2018-12-24 10:26:46 +01:00 committed by GitHub
commit 71491d0afd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,43 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, zlib, bzip2, lzma, lzo, lz4, zstd, xz
, libgcrypt, e2fsprogs, utillinux, libgpgerror }:
let
version = "0.8.5";
in stdenv.mkDerivation {
name = "fsarchiver-${version}";
src = fetchFromGitHub {
owner = "fdupoux";
repo = "fsarchiver";
rev = version;
sha256 = "1rvwq5v3rl14bqxjm1ibfapyicf0sa44nw7451v10kx39lp56ylp";
};
nativeBuildInputs = [
autoreconfHook pkgconfig
];
buildInputs = [
zlib bzip2 lzma lzo lz4 zstd xz
libgcrypt e2fsprogs utillinux libgpgerror
];
meta = with stdenv.lib; {
description = "File system archiver for linux";
longDescription = ''
FSArchiver is a system tool that allows you to save the contents of a
file-system to a compressed archive file. The file-system can be restored
on a partition which has a different size and it can be restored on a
different file-system. Unlike tar/dar, FSArchiver also creates the
file-system when it extracts the data to partitions. Everything is
checksummed in the archive in order to protect the data. If the archive is
corrupt, you just loose the current file, not the whole archive.
'';
homepage = http://www.fsarchiver.org/;
license = licenses.lgpl2;
maintainers = [ maintainers.etu ];
platforms = platforms.linux;
};
}

View File

@ -2783,6 +2783,8 @@ in
ftop = callPackage ../os-specific/linux/ftop { };
fsarchiver = callPackage ../tools/archivers/fsarchiver { };
fsfs = callPackage ../tools/filesystems/fsfs { };
fstl = qt5.callPackage ../applications/graphics/fstl { };