2017-09-25 11:59:17 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libwhereami-${version}";
|
2018-03-03 05:00:41 +00:00
|
|
|
version = "0.2.0";
|
2017-09-25 11:59:17 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-03-03 05:00:41 +00:00
|
|
|
sha256 = "10phq4a11m8ly6b4dc2yg3dnjzg8ad5wnjv0ilvwylnw32800pxr";
|
2017-09-25 11:59:17 +01:00
|
|
|
rev = version;
|
|
|
|
repo = "libwhereami";
|
|
|
|
owner = "puppetlabs";
|
|
|
|
};
|
|
|
|
|
2018-03-03 04:58:52 +00:00
|
|
|
# post gcc7, upstream bug: https://tickets.puppetlabs.com/browse/FACT-1828
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated";
|
|
|
|
|
2017-09-25 11:59:17 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
buildInputs = [ boost curl leatherman ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
inherit (src.meta) homepage;
|
|
|
|
description = "Library to report hypervisor information from inside a VM";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.womfoo ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|