thin-provisioning-tools: init at 0.6.3 (#19268)

This commit is contained in:
Robin Gloster 2016-10-05 20:28:28 +02:00 committed by GitHub
parent f084274eeb
commit cd1ec18b42
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, autoreconfHook, expat, libaio, boost }:
stdenv.mkDerivation rec {
name = "thin-provisioning-tools-${version}";
version = "0.6.3";
src = fetchFromGitHub {
owner = "jthornber";
repo = "thin-provisioning-tools";
rev = "v${version}";
sha256 = "0glwhfzwj9afbqdv59ppgfqy7rik8m0vcap7279fpnvwpr1c2p5n";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ expat libaio boost ];
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 ];
};
}

View File

@ -3790,6 +3790,8 @@ in
thc-hydra = callPackage ../tools/security/thc-hydra { };
thin-provisioning-tools = callPackage ../tools/misc/thin-provisioning-tools { };
tiled = qt5.callPackage ../applications/editors/tiled { };
timemachine = callPackage ../applications/audio/timemachine { };