2017-09-25 11:59:17 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libwhereami";
|
2019-11-02 22:44:23 +00:00
|
|
|
version = "0.3.1";
|
2017-09-25 11:59:17 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-11-02 22:44:23 +00:00
|
|
|
sha256 = "16xjb6zp60ma76aa3kq3q8i8zn0n61gf39fny12cny8nggwjpbww";
|
2017-09-25 11:59:17 +01:00
|
|
|
rev = version;
|
|
|
|
repo = "libwhereami";
|
|
|
|
owner = "puppetlabs";
|
|
|
|
};
|
|
|
|
|
2019-10-30 01:29:30 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=catch-value";
|
2018-03-03 04:58:52 +00:00
|
|
|
|
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 ];
|
2019-10-20 15:49:18 +01:00
|
|
|
platforms = with platforms; [ "i686-linux" "x86_64-linux" ]; # fails on aarch64
|
2017-09-25 11:59:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|