14 stdenv.mkDerivation rec {
19 url = "mirror://kernel/linux/utils/fs/xfs/${pname}/${pname}-${version}.tar.xz";
20 sha256 = "sha256-85xMGzBrLdfsl5wOlNYP5pCD0uz5rwUcrF7zvtdyx0o=";
37 substituteInPlace Makefile \
38 --replace "cp include/install-sh ." "cp -f include/install-sh ."
41 # Conifigure scripts don't check PATH, see xfstests derviation
43 export MAKE=$(type -P make)
44 export MSGFMT=$(type -P msgfmt)
45 export MSGMERGE=$(type -P msgmerge)
46 export XGETTEXT=$(type -P xgettext)
49 patchShebangs ./install-sh
53 description = "XFS filesystem incremental dump utility";
54 homepage = "https://git.kernel.org/pub/scm/fs/xfs/xfsdump-dev.git/tree/doc/CHANGES";
55 license = licenses.gpl2Only;
56 maintainers = [ maintainers.lunik1 ];
57 platforms = platforms.linux;