2017-09-25 12:59:17 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libwhereami";
|
2019-03-08 19:18:35 +01:00
|
|
|
version = "0.2.2";
|
2017-09-25 12:59:17 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-03-08 19:18:35 +01:00
|
|
|
sha256 = "084n153jaq8fmhjififk0xlx1d1i3lclnw2j3ly8bixvc392vzly";
|
2017-09-25 12:59:17 +02:00
|
|
|
rev = version;
|
|
|
|
repo = "libwhereami";
|
|
|
|
owner = "puppetlabs";
|
|
|
|
};
|
|
|
|
|
2019-01-11 11:59:17 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=catch-value" ];
|
2018-03-03 05:58:52 +01:00
|
|
|
|
2017-09-25 12:59:17 +02: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;
|
2019-03-08 19:26:26 +01:00
|
|
|
badPlatforms = platforms.arm;
|
2017-09-25 12:59:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|