2015-03-20 22:44:51 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, attr, acl, zlib, libuuid, e2fsprogs, lzo
|
2015-07-10 19:07:39 +01:00
|
|
|
, asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt
|
|
|
|
}:
|
2009-04-01 06:42:07 +01:00
|
|
|
|
2017-10-07 02:31:59 +01:00
|
|
|
let version = "4.13.1"; in
|
2013-12-30 16:50:18 +00:00
|
|
|
|
2015-07-10 19:07:39 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-30 16:50:18 +00:00
|
|
|
name = "btrfs-progs-${version}";
|
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";
|
2017-10-07 02:31:59 +01:00
|
|
|
sha256 = "1clavvrlkswgicqsm2yfsxqw04lsn8dra0db84jqm6j2apz80kz0";
|
2009-04-01 06:42:07 +01:00
|
|
|
};
|
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-05-31 01:13:26 +01:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
attr acl zlib libuuid e2fsprogs lzo
|
2014-05-31 01:13:26 +01:00
|
|
|
asciidoc xmlto docbook_xml_dtd_45 docbook_xsl libxslt
|
|
|
|
];
|
2011-12-13 04:30:49 +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
|
|
|
|
patchPhase = "sed -i s/-O1/-O2/ configure";
|
2009-04-01 06:42:07 +01:00
|
|
|
|
2017-07-06 12:53:25 +01:00
|
|
|
postInstall = ''
|
|
|
|
install -v -m 444 -D btrfs-completion $out/etc/bash_completion.d/btrfs
|
|
|
|
'';
|
|
|
|
|
2014-08-30 15:36:54 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-07-18 14:21:33 +01:00
|
|
|
description = "Utilities for the btrfs filesystem";
|
|
|
|
homepage = https://btrfs.wiki.kernel.org/;
|
2014-08-30 15:36:54 +01:00
|
|
|
license = licenses.gpl2;
|
2016-03-21 00:56:17 +00:00
|
|
|
maintainers = with maintainers; [ nckx raskin wkennington ];
|
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
|
|
|
}
|