Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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

authored by Robin Gloster and committed by GitHub cd1ec18b f084274e

+27
+25
pkgs/tools/misc/thin-provisioning-tools/default.nix
··· 1 + { stdenv, fetchFromGitHub, autoreconfHook, expat, libaio, boost }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "thin-provisioning-tools-${version}"; 5 + version = "0.6.3"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "jthornber"; 9 + repo = "thin-provisioning-tools"; 10 + rev = "v${version}"; 11 + sha256 = "0glwhfzwj9afbqdv59ppgfqy7rik8m0vcap7279fpnvwpr1c2p5n"; 12 + }; 13 + 14 + nativeBuildInputs = [ autoreconfHook ]; 15 + 16 + buildInputs = [ expat libaio boost ]; 17 + 18 + meta = with stdenv.lib; { 19 + homepage = https://github.com/jthornber/thin-provisioning-tools/; 20 + description = "A suite of tools for manipulating the metadata of the dm-thin device-mapper target"; 21 + license = licenses.gpl3; 22 + platforms = platforms.unix; 23 + maintainers = with maintainers; [ globin ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 3790 3790 3791 3791 thc-hydra = callPackage ../tools/security/thc-hydra { }; 3792 3792 3793 + thin-provisioning-tools = callPackage ../tools/misc/thin-provisioning-tools { }; 3794 + 3793 3795 tiled = qt5.callPackage ../applications/editors/tiled { }; 3794 3796 3795 3797 timemachine = callPackage ../applications/audio/timemachine { };