linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / thin-provisioning-tools / default.nix
blobbff6c9c96887a8c8750cfe87a4ed24476fb9cb54
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, expat, libaio, boost }:
3 stdenv.mkDerivation rec {
4   pname = "thin-provisioning-tools";
5   version = "0.9.0";
7   src = fetchFromGitHub {
8     owner = "jthornber";
9     repo = "thin-provisioning-tools";
10     rev = "v${version}";
11     sha256 = "1iwg04rhmdhijmlk5hfl8wvv83115lzb65if6cc1glkkfva8jfjp";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   buildInputs = [ expat libaio boost ];
18   enableParallelBuilding = true;
20   meta = with lib; {
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; [ ];
26   };