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