2014-05-30 17:13:26 -07:00
|
|
|
{ stdenv, fetchurl, attr, acl, zlib, libuuid, e2fsprogs, lzo
|
|
|
|
, asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt }:
|
2009-03-31 22:42:07 -07:00
|
|
|
|
2014-08-30 07:36:54 -07:00
|
|
|
let version = "3.16"; in
|
2013-12-30 08:50:18 -08:00
|
|
|
|
2013-12-28 16:50:42 -08: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 {
|
2013-12-30 08:50:18 -08:00
|
|
|
url = "mirror://kernel/linux/kernel/people/mason/btrfs-progs/btrfs-progs-v${version}.tar.xz";
|
2014-08-30 07:36:54 -07:00
|
|
|
sha256 = "0phbrgipl04q8cdj9nnshik7b6p2bg51jxb3l1gvfc04dkgm2xls";
|
2009-03-31 22:42:07 -07:00
|
|
|
};
|
|
|
|
|
2014-05-30 17:13:26 -07:00
|
|
|
buildInputs = [
|
|
|
|
attr acl zlib libuuid e2fsprogs lzo
|
|
|
|
asciidoc xmlto docbook_xml_dtd_45 docbook_xsl libxslt
|
|
|
|
];
|
2011-12-12 20:30:49 -08:00
|
|
|
|
2014-09-02 23:11:18 -07:00
|
|
|
patches = [ ./multiple_mounts.patch ];
|
|
|
|
|
2013-10-27 02:19:18 -07:00
|
|
|
# for btrfs to get the rpath to libgcc_s, needed for pthread_cancel to work
|
|
|
|
NIX_CFLAGS_LINK = "-lgcc_s";
|
|
|
|
|
2012-07-18 06:21:33 -07:00
|
|
|
makeFlags = "prefix=$(out)";
|
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;
|
|
|
|
maintainers = with maintainers; [ raskin wkennington ];
|
|
|
|
platforms = platforms.linux;
|
2009-03-31 22:42:07 -07:00
|
|
|
};
|
|
|
|
}
|