nixpkgs/pkgs/development/libraries/libwhereami/default.nix

31 lines
777 B
Nix
Raw Normal View History

2017-09-25 12:59:17 +02:00
{ stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
stdenv.mkDerivation rec {
pname = "libwhereami";
2020-06-10 15:50:37 +02:00
version = "0.5.0";
2017-09-25 12:59:17 +02:00
src = fetchFromGitHub {
2020-06-10 15:50:37 +02:00
sha256 = "05fc28dri2h858kxbvldk5b6wd5is3fjcdsiqj3nxf95i66bb3xp";
2017-09-25 12:59:17 +02:00
rev = version;
repo = "libwhereami";
owner = "puppetlabs";
};
2020-07-04 11:20:00 +02:00
NIX_CFLAGS_COMPILE = "-Wno-error";
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 ];
2020-07-04 11:20:00 +02:00
platforms = with platforms; [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; # fails on aarch64
2017-09-25 12:59:17 +02:00
};
}