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

31 lines
777 B
Nix
Raw Normal View History

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