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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.8 KiB
Nix
Raw Normal View History

2022-01-16 20:51:27 +01:00
{ lib, stdenv, fetchurl
, pkg-config, python3, sphinx
2022-01-16 20:51:27 +01:00
, zstd
, acl, attr, e2fsprogs, libuuid, lzo, udev, zlib
2022-01-24 21:39:11 +01:00
, runCommand, btrfs-progs
, gitUpdater
}:
stdenv.mkDerivation rec {
pname = "btrfs-progs";
2022-06-07 03:04:15 +02:00
version = "5.18.1";
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";
2022-06-07 03:04:15 +02:00
sha256 = "sha256-bpinXM/1LpNU2qGtKExhTEkPhEJzovpSTLrJ64QcclU=";
};
2018-02-24 14:23:10 +01:00
nativeBuildInputs = [
pkg-config
2019-05-07 00:52:54 +02:00
python3 python3.pkgs.setuptools
sphinx
];
buildInputs = [ acl attr e2fsprogs libuuid lzo python3 udev zlib zstd ];
2019-05-07 00:52:54 +02: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
'';
configureFlags = lib.optional stdenv.hostPlatform.isMusl "--disable-backtrace";
makeFlags = [ "udevruledir=$(out)/lib/udev/rules.d" ];
2022-01-16 20:51:27 +01:00
installFlags = [ "install_python" ];
enableParallelBuilding = true;
2022-01-24 21:39:11 +01:00
passthru.tests = {
simple-filesystem = runCommand "btrfs-progs-create-fs" {} ''
mkdir -p $out
truncate -s110M $out/disc
${btrfs-progs}/bin/mkfs.btrfs $out/disc | tee $out/success
${btrfs-progs}/bin/btrfs check $out/disc | tee $out/success
[ -e $out/success ]
'';
};
passthru.updateScript = gitUpdater {
inherit pname version;
# No nicer place to find latest release.
url = "https://github.com/kdave/btrfs-progs.git";
rev-prefix = "v";
};
meta = with lib; {
description = "Utilities for the btrfs filesystem";
2020-04-09 12:57:13 +02:00
homepage = "https://btrfs.wiki.kernel.org/";
2022-01-16 20:52:25 +01:00
license = licenses.gpl2Only;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
};
}