2018-03-22 20:16:19 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, attr, acl, zlib, libuuid, e2fsprogs, lzo
|
2018-11-27 00:13:41 +01:00
|
|
|
, asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt, zstd, python, pythonPackages
|
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 {
|
2013-12-30 17:50:18 +01:00
|
|
|
name = "btrfs-progs-${version}";
|
2018-11-10 15:05:16 +01:00
|
|
|
version = "4.19";
|
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";
|
2018-11-10 15:05:16 +01:00
|
|
|
sha256 = "0jd3bsg3117ysr82n03w33sqw1g9z1ciixcxrwgp90yghvjzp4fm";
|
2009-04-01 07:42:07 +02:00
|
|
|
};
|
|
|
|
|
2018-02-24 14:23:10 +01:00
|
|
|
nativeBuildInputs = [
|
2018-11-27 00:13:41 +01:00
|
|
|
pkgconfig asciidoc xmlto docbook_xml_dtd_45 docbook_xsl libxslt python pythonPackages.setuptools
|
2014-05-31 02:13:26 +02:00
|
|
|
];
|
2011-12-13 05:30:49 +01:00
|
|
|
|
2018-11-27 00:13:41 +01:00
|
|
|
buildInputs = [ attr acl zlib libuuid e2fsprogs lzo zstd python ];
|
2018-02-24 14:23:10 +01: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 = ''
|
|
|
|
install -v -m 444 -D btrfs-completion $out/etc/bash_completion.d/btrfs
|
|
|
|
'';
|
|
|
|
|
2018-03-24 19:40:25 +01:00
|
|
|
configureFlags = stdenv.lib.optional stdenv.hostPlatform.isMusl "--disable-backtrace";
|
|
|
|
|
2014-08-30 16:36:54 +02:00
|
|
|
meta = with stdenv.lib; {
|
2012-07-18 15:21:33 +02:00
|
|
|
description = "Utilities for the btrfs filesystem";
|
|
|
|
homepage = https://btrfs.wiki.kernel.org/;
|
2014-08-30 16:36:54 +02:00
|
|
|
license = licenses.gpl2;
|
2018-01-16 22:59:13 +01:00
|
|
|
maintainers = with maintainers; [ raskin wkennington ];
|
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
|
|
|
}
|