2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, attr, acl, zlib, libuuid, e2fsprogs, lzo
|
2019-05-06 23:52:54 +01:00
|
|
|
, asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt, zstd, python3
|
2015-07-10 19:07:39 +01:00
|
|
|
}:
|
2009-04-01 06:42:07 +01:00
|
|
|
|
2015-07-10 19:07:39 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "btrfs-progs";
|
2021-08-03 13:07:15 +01:00
|
|
|
version = "5.13.1";
|
2009-10-02 16:06:07 +01:00
|
|
|
|
2013-12-29 00:50:42 +00:00
|
|
|
src = fetchurl {
|
2014-09-30 19:35:58 +01:00
|
|
|
url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz";
|
2021-08-03 13:07:15 +01:00
|
|
|
sha256 = "sha256-PX5aAeaPuvSFxfHaFca4p9FFX7V7bnWnBvjiuzf085k=";
|
2009-04-01 06:42:07 +01:00
|
|
|
};
|
|
|
|
|
2018-02-24 13:23:10 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 09:17:16 +00:00
|
|
|
pkg-config asciidoc xmlto docbook_xml_dtd_45 docbook_xsl libxslt
|
2019-05-06 23:52:54 +01:00
|
|
|
python3 python3.pkgs.setuptools
|
2014-05-31 01:13:26 +01:00
|
|
|
];
|
2011-12-13 04:30:49 +00:00
|
|
|
|
2019-05-06 23:52:54 +01:00
|
|
|
buildInputs = [ attr acl zlib libuuid e2fsprogs lzo zstd python3 ];
|
|
|
|
|
|
|
|
# for python cross-compiling
|
|
|
|
_PYTHON_HOST_PLATFORM = stdenv.hostPlatform.config;
|
2018-02-24 13:23:10 +00:00
|
|
|
|
2015-07-10 19:07:39 +01:00
|
|
|
# gcc bug with -O1 on ARM with gcc 4.8
|
|
|
|
# This should be fine on all platforms so apply universally
|
2018-03-22 19:16:19 +00:00
|
|
|
postPatch = "sed -i s/-O1/-O2/ configure";
|
2009-04-01 06:42:07 +01:00
|
|
|
|
2017-07-06 12:53:25 +01:00
|
|
|
postInstall = ''
|
2020-11-12 21:22:18 +00:00
|
|
|
install -v -m 444 -D btrfs-completion $out/share/bash-completion/completions/btrfs
|
2017-07-06 12:53:25 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
configureFlags = lib.optional stdenv.hostPlatform.isMusl "--disable-backtrace";
|
2018-03-24 18:40:25 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2012-07-18 14:21:33 +01:00
|
|
|
description = "Utilities for the btrfs filesystem";
|
2020-04-09 11:57:13 +01:00
|
|
|
homepage = "https://btrfs.wiki.kernel.org/";
|
2014-08-30 15:36:54 +01:00
|
|
|
license = licenses.gpl2;
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2014-08-30 15:36:54 +01:00
|
|
|
platforms = platforms.linux;
|
2009-04-01 06:42:07 +01:00
|
|
|
};
|
2015-07-10 19:07:39 +01:00
|
|
|
}
|