2022-01-16 20:51:27 +01:00
|
|
|
{ lib, stdenv, fetchurl
|
2022-05-05 23:29:30 +02:00
|
|
|
, pkg-config, python3, sphinx
|
2022-01-16 20:51:27 +01:00
|
|
|
, zstd
|
2022-03-14 00:21:33 +01:00
|
|
|
, acl, attr, e2fsprogs, libuuid, lzo, udev, zlib
|
2022-01-24 21:39:11 +01:00
|
|
|
, runCommand, btrfs-progs
|
2022-05-05 23:29:30 +02:00
|
|
|
, gitUpdater
|
2015-07-10 20:07:39 +02:00
|
|
|
}:
|
2009-04-01 07:42:07 +02:00
|
|
|
|
2015-07-10 20:07:39 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "btrfs-progs";
|
2022-06-07 03:04:15 +02:00
|
|
|
version = "5.18.1";
|
2009-10-02 17:06:07 +02:00
|
|
|
|
2013-12-29 01:50:42 +01:00
|
|
|
src = fetchurl {
|
2014-09-30 20:35:58 +02:00
|
|
|
url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz";
|
2022-06-07 03:04:15 +02:00
|
|
|
sha256 = "sha256-bpinXM/1LpNU2qGtKExhTEkPhEJzovpSTLrJ64QcclU=";
|
2009-04-01 07:42:07 +02:00
|
|
|
};
|
|
|
|
|
2018-02-24 14:23:10 +01:00
|
|
|
nativeBuildInputs = [
|
2022-05-05 23:29:30 +02:00
|
|
|
pkg-config
|
2019-05-07 00:52:54 +02:00
|
|
|
python3 python3.pkgs.setuptools
|
2022-05-05 23:29:30 +02:00
|
|
|
sphinx
|
2014-05-31 02:13:26 +02:00
|
|
|
];
|
2011-12-13 05:30:49 +01:00
|
|
|
|
2022-05-27 15:13:02 +02:00
|
|
|
buildInputs = [ acl attr e2fsprogs libuuid lzo python3 udev zlib zstd ];
|
2019-05-07 00:52:54 +02:00
|
|
|
|
2015-07-10 20:07:39 +02:00
|
|
|
# gcc bug with -O1 on ARM with gcc 4.8
|
|
|
|
# This should be fine on all platforms so apply universally
|
2018-03-22 20:16:19 +01:00
|
|
|
postPatch = "sed -i s/-O1/-O2/ configure";
|
2009-04-01 07:42:07 +02:00
|
|
|
|
2017-07-06 13:53:25 +02:00
|
|
|
postInstall = ''
|
2020-11-12 22:22:18 +01:00
|
|
|
install -v -m 444 -D btrfs-completion $out/share/bash-completion/completions/btrfs
|
2017-07-06 13:53:25 +02:00
|
|
|
'';
|
|
|
|
|
2022-05-27 15:13:02 +02:00
|
|
|
configureFlags = lib.optional stdenv.hostPlatform.isMusl "--disable-backtrace";
|
2018-03-24 19:40:25 +01:00
|
|
|
|
2022-05-27 15:13:02 +02:00
|
|
|
makeFlags = [ "udevruledir=$(out)/lib/udev/rules.d" ];
|
2022-01-16 20:51:27 +01:00
|
|
|
|
2022-05-18 01:44:28 +02:00
|
|
|
installFlags = [ "install_python" ];
|
|
|
|
|
2022-01-16 20:52:08 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2022-01-24 21:39:11 +01:00
|
|
|
passthru.tests = {
|
|
|
|
simple-filesystem = runCommand "btrfs-progs-create-fs" {} ''
|
|
|
|
mkdir -p $out
|
|
|
|
truncate -s110M $out/disc
|
|
|
|
${btrfs-progs}/bin/mkfs.btrfs $out/disc | tee $out/success
|
|
|
|
${btrfs-progs}/bin/btrfs check $out/disc | tee $out/success
|
|
|
|
[ -e $out/success ]
|
|
|
|
'';
|
|
|
|
};
|
2022-05-05 23:29:30 +02:00
|
|
|
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
|
|
inherit pname version;
|
|
|
|
# No nicer place to find latest release.
|
|
|
|
url = "https://github.com/kdave/btrfs-progs.git";
|
|
|
|
rev-prefix = "v";
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2012-07-18 15:21:33 +02:00
|
|
|
description = "Utilities for the btrfs filesystem";
|
2020-04-09 12:57:13 +02:00
|
|
|
homepage = "https://btrfs.wiki.kernel.org/";
|
2022-01-16 20:52:25 +01:00
|
|
|
license = licenses.gpl2Only;
|
2019-01-26 11:01:09 +01:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2014-08-30 16:36:54 +02:00
|
|
|
platforms = platforms.linux;
|
2009-04-01 07:42:07 +02:00
|
|
|
};
|
2015-07-10 20:07:39 +02:00
|
|
|
}
|