1 { lib, stdenv, fetchFromGitHub, autoreconfHook, expat, libaio, boost }:
3 stdenv.mkDerivation rec {
4 pname = "thin-provisioning-tools";
7 src = fetchFromGitHub {
9 repo = "thin-provisioning-tools";
11 sha256 = "1iwg04rhmdhijmlk5hfl8wvv83115lzb65if6cc1glkkfva8jfjp";
14 nativeBuildInputs = [ autoreconfHook ];
16 buildInputs = [ expat libaio boost ];
18 enableParallelBuilding = true;
21 homepage = "https://github.com/jthornber/thin-provisioning-tools/";
22 description = "A suite of tools for manipulating the metadata of the dm-thin device-mapper target";
23 license = licenses.gpl3;
24 platforms = platforms.unix;
25 maintainers = with maintainers; [ ];