nixpkgs/pkgs/tools/filesystems/btrfs-progs/default.nix

46 lines
1.3 KiB
Nix
Raw Normal View History

2022-01-16 19:51:27 +00:00
{ lib, stdenv, fetchurl
, asciidoc, docbook_xml_dtd_45, docbook_xsl, libxslt, pkg-config, python3, xmlto
, zstd
, acl, attr, e2fsprogs, libuuid, lzo, systemd, zlib
}:
stdenv.mkDerivation rec {
pname = "btrfs-progs";
2022-01-16 19:51:27 +00:00
version = "5.16";
src = fetchurl {
2014-09-30 18:35:58 +00:00
url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz";
2022-01-16 19:51:27 +00:00
sha256 = "0cqqlcq9bywfi3cpg5ivxiv7p9v6z1r6k4nnmin24mj1kp8krarq";
};
2018-02-24 13:23:10 +00:00
nativeBuildInputs = [
pkg-config asciidoc xmlto docbook_xml_dtd_45 docbook_xsl libxslt
2019-05-06 22:52:54 +00:00
python3 python3.pkgs.setuptools
];
2022-01-16 19:51:27 +00:00
buildInputs = [ acl attr e2fsprogs libuuid lzo python3 systemd zlib zstd ];
2019-05-06 22:52:54 +00:00
# for python cross-compiling
_PYTHON_HOST_PLATFORM = stdenv.hostPlatform.config;
2018-02-24 13:23:10 +00:00
# gcc bug with -O1 on ARM with gcc 4.8
# This should be fine on all platforms so apply universally
postPatch = "sed -i s/-O1/-O2/ configure";
postInstall = ''
install -v -m 444 -D btrfs-completion $out/share/bash-completion/completions/btrfs
'';
2021-01-15 09:19:50 +00:00
configureFlags = lib.optional stdenv.hostPlatform.isMusl "--disable-backtrace";
2022-01-16 19:51:27 +00:00
makeFlags = [ "udevruledir=$(out)/lib/udev/rules.d" ];
meta = with lib; {
description = "Utilities for the btrfs filesystem";
2020-04-09 10:57:13 +00:00
homepage = "https://btrfs.wiki.kernel.org/";
license = licenses.gpl2;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
};
}