thin-provisioning-tools: init at 0.6.3 (#19268)
This commit is contained in:
parent
f084274eeb
commit
cd1ec18b42
25
pkgs/tools/misc/thin-provisioning-tools/default.nix
Normal file
25
pkgs/tools/misc/thin-provisioning-tools/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user