mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
26 lines
754 B
Nix
26 lines
754 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|