2021-02-27 21:18:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, expat, libaio, boost }:
|
2016-10-05 18:28:28 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "thin-provisioning-tools";
|
2020-03-29 16:56:05 +00:00
|
|
|
version = "0.9.0";
|
2016-10-05 18:28:28 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jthornber";
|
|
|
|
repo = "thin-provisioning-tools";
|
|
|
|
rev = "v${version}";
|
2020-03-29 16:56:05 +00:00
|
|
|
sha256 = "1iwg04rhmdhijmlk5hfl8wvv83115lzb65if6cc1glkkfva8jfjp";
|
2016-10-05 18:28:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2021-02-27 21:18:13 +00:00
|
|
|
buildInputs = [ expat libaio boost ];
|
2018-05-08 19:51:52 +00:00
|
|
|
|
2018-05-08 20:23:32 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/jthornber/thin-provisioning-tools/";
|
2016-10-05 18:28:28 +00:00
|
|
|
description = "A suite of tools for manipulating the metadata of the dm-thin device-mapper target";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.unix;
|
2019-08-20 17:36:05 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2016-10-05 18:28:28 +00:00
|
|
|
};
|
|
|
|
}
|