nixpkgs/pkgs/tools/misc/thin-provisioning-tools/default.nix
Ryan Mulligan 76a1e39e12 thin-provisioning-tools: 0.6.3 -> 0.7.5
Semi-automatic update. These checks were performed:

- built on NixOS
- found 0.7.5 with grep in /nix/store/7y3a77lh1w5ghqlmy5l00bsx90dpwyy4-thin-provisioning-tools-0.7.5
- found 0.7.5 in filename of file in /nix/store/7y3a77lh1w5ghqlmy5l00bsx90dpwyy4-thin-provisioning-tools-0.7.5

cc "@globin"
2018-02-27 17:29:26 -08:00

26 lines
754 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, expat, libaio, boost }:
stdenv.mkDerivation rec {
name = "thin-provisioning-tools-${version}";
version = "0.7.5";
src = fetchFromGitHub {
owner = "jthornber";
repo = "thin-provisioning-tools";
rev = "v${version}";
sha256 = "1ibg5wxrbqg4pr3f6aacqm42fxpwn5q00j8ldy9mw4an3ck41cwa";
};
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 ];
};
}