mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
commit
b1254218f2
2 changed files with 61 additions and 0 deletions
59
pkgs/tools/filesystems/xfsdump/default.nix
Normal file
59
pkgs/tools/filesystems/xfsdump/default.nix
Normal file
|
@ -0,0 +1,59 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, attr
|
||||
, gettext
|
||||
, autoconf
|
||||
, automake
|
||||
, ncurses
|
||||
, libtool
|
||||
, libuuid
|
||||
, libxfs
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xfsdump";
|
||||
version = "3.1.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kernel/linux/utils/fs/xfs/${pname}/${pname}-${version}.tar.xz";
|
||||
sha256 = "sha256-mqt6U6oFzUbtyXJp6/FFaqsrYKuMH/+q+KpJLwtfZRc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoconf
|
||||
automake
|
||||
gettext
|
||||
libtool
|
||||
];
|
||||
buildInputs = [
|
||||
attr
|
||||
libuuid
|
||||
libxfs
|
||||
ncurses
|
||||
];
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace Makefile \
|
||||
--replace "cp include/install-sh ." "cp -f include/install-sh ."
|
||||
'';
|
||||
|
||||
# Conifigure scripts don't check PATH, see xfstests derviation
|
||||
preConfigure = ''
|
||||
export MAKE=$(type -P make)
|
||||
export MSGFMT=$(type -P msgfmt)
|
||||
export MSGMERGE=$(type -P msgmerge)
|
||||
export XGETTEXT=$(type -P xgettext)
|
||||
|
||||
make configure
|
||||
patchShebangs ./install-sh
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "XFS filesystem incremental dump utility";
|
||||
homepage = "https://git.kernel.org/pub/scm/fs/xfs/xfsdump-dev.git/tree/doc/CHANGES";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = [ maintainers.lunik1 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -11465,6 +11465,8 @@ with pkgs;
|
|||
xflux = callPackage ../tools/misc/xflux { };
|
||||
xflux-gui = python3Packages.callPackage ../tools/misc/xflux/gui.nix { };
|
||||
|
||||
xfsdump = callPackage ../tools/filesystems/xfsdump { };
|
||||
|
||||
xfsprogs = callPackage ../tools/filesystems/xfsprogs { };
|
||||
libxfs = xfsprogs.dev;
|
||||
|
||||
|
|
Loading…
Reference in a new issue