nixpkgs/pkgs/tools/filesystems/xfsprogs/default.nix

56 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, buildPackages, fetchurl, autoconf, automake, gettext, libtool, pkg-config
2020-12-25 22:06:59 +01:00
, icu, libuuid, readline, inih
2018-11-28 10:44:42 +01:00
}:
2017-07-20 10:54:25 +02:00
stdenv.mkDerivation rec {
pname = "xfsprogs";
version = "5.13.0";
2020-12-25 22:06:59 +01:00
src = fetchurl {
url = "mirror://kernel/linux/utils/fs/xfs/xfsprogs/${pname}-${version}.tar.xz";
sha256 = "sha256-ThQtS6vghq35AW2MYGyAWCnaCORjiaRDP0A0YgT5DNs=";
};
2017-07-20 10:54:25 +02:00
outputs = [ "bin" "dev" "out" "doc" ];
2014-09-19 23:18:33 +02:00
2018-11-28 10:44:42 +01:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [
autoconf automake libtool gettext pkg-config
2018-11-28 10:44:42 +01:00
libuuid # codegen tool uses libuuid
];
2020-12-25 22:06:59 +01:00
buildInputs = [ readline icu inih ];
2018-11-28 10:44:42 +01:00
propagatedBuildInputs = [ libuuid ]; # Dev headers include <uuid/uuid.h>
2017-07-20 10:54:25 +02:00
enableParallelBuilding = true;
2020-12-25 22:06:59 +01:00
# @sbindir@ is replaced with /run/current-system/sw/bin to fix dependency cycles
2014-09-20 01:14:50 +02:00
preConfigure = ''
2020-12-25 22:06:59 +01:00
for file in scrub/{xfs_scrub_all.cron.in,xfs_scrub@.service.in,xfs_scrub_all.service.in}; do
substituteInPlace "$file" \
--replace '@sbindir@' '/run/current-system/sw/bin'
done
2017-07-20 10:54:25 +02:00
make configure
2020-12-25 22:06:59 +01:00
patchShebangs ./install-sh
2014-09-20 01:14:50 +02:00
'';
2014-09-19 23:18:33 +02:00
configureFlags = [
"--disable-lib64"
2020-12-25 22:06:59 +01:00
"--with-systemd-unit-dir=${placeholder "out"}/lib/systemd/system"
2014-09-19 23:18:33 +02:00
];
2014-09-19 23:18:33 +02:00
installFlags = [ "install-dev" ];
2017-07-20 10:54:25 +02:00
# FIXME: forbidden rpath
postInstall = ''
find . -type d -name .libs | xargs rm -rf
'';
2014-09-19 23:18:33 +02:00
meta = with lib; {
homepage = "https://xfs.org/";
description = "SGI XFS utilities";
license = with licenses; [ gpl2Only lgpl21 gpl3Plus ]; # see https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git/tree/debian/copyright
2014-09-19 23:18:33 +02:00
platforms = platforms.linux;
2020-12-25 22:06:59 +01:00
maintainers = with maintainers; [ dezgeg ajs124 ];
};
}