3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/thin-provisioning-tools/default.nix

33 lines
973 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, expat, libaio, boost }:
stdenv.mkDerivation rec {
name = "thin-provisioning-tools-${version}";
version = "0.7.6";
src = fetchFromGitHub {
owner = "jthornber";
repo = "thin-provisioning-tools";
rev = "v${version}";
sha256 = "175mk3krfdmn43cjw378s32hs62gq8fmq549rjmyc651sz6jnj0g";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ expat libaio boost ];
postPatch = stdenv.lib.optional stdenv.hostPlatform.isMusl ''
sed -i -e '/PAGE_SIZE/d' -e '1i#include <limits.h>' \
block-cache/io_engine.h unit-tests/io_engine_t.cc
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = https://github.com/jthornber/thin-provisioning-tools/;
description = "A suite of tools for manipulating the metadata of the dm-thin device-mapper target";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ globin ];
};
}