2015-03-20 15:44:51 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, attr, acl, zlib, libuuid, e2fsprogs, lzo
|
2015-07-10 11:07:39 -07:00
|
|
|
, asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt
|
|
|
|
}:
|
2009-03-31 22:42:07 -07:00
|
|
|
|
2017-04-10 23:45:50 -07:00
|
|
|
let version = "4.8.2"; in
|
2013-12-30 08:50:18 -08:00
|
|
|
|
2015-07-10 11:07:39 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-30 08:50:18 -08:00
|
|
|
name = "btrfs-progs-${version}";
|
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";
|
2017-04-10 23:45:50 -07:00
|
|
|
sha256 = "0pswcfmdnfc586770h74abp67gn2xv8fd46vxlimnmn837sj7h41";
|
2009-03-31 22:42:07 -07:00
|
|
|
};
|
|
|
|
|
2014-05-30 17:13:26 -07:00
|
|
|
buildInputs = [
|
2015-03-20 15:44:51 -07:00
|
|
|
pkgconfig attr acl zlib libuuid e2fsprogs lzo
|
2014-05-30 17:13:26 -07:00
|
|
|
asciidoc xmlto docbook_xml_dtd_45 docbook_xsl libxslt
|
|
|
|
];
|
2011-12-12 20:30:49 -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
|
|
|
|
patchPhase = "sed -i s/-O1/-O2/ configure";
|
2009-03-31 22:42:07 -07:00
|
|
|
|
2014-08-30 07:36:54 -07:00
|
|
|
meta = with stdenv.lib; {
|
2012-07-18 06:21:33 -07:00
|
|
|
description = "Utilities for the btrfs filesystem";
|
|
|
|
homepage = https://btrfs.wiki.kernel.org/;
|
2014-08-30 07:36:54 -07:00
|
|
|
license = licenses.gpl2;
|
2016-03-20 17:56:17 -07:00
|
|
|
maintainers = with maintainers; [ nckx raskin wkennington ];
|
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
|
|
|
}
|