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

32 lines
808 B
Nix
Raw Normal View History

2017-09-25 03:59:17 -07:00
{ stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
stdenv.mkDerivation rec {
name = "libwhereami-${version}";
2018-03-02 21:00:41 -08:00
version = "0.2.0";
2017-09-25 03:59:17 -07:00
src = fetchFromGitHub {
2018-03-02 21:00:41 -08:00
sha256 = "10phq4a11m8ly6b4dc2yg3dnjzg8ad5wnjv0ilvwylnw32800pxr";
2017-09-25 03:59:17 -07:00
rev = version;
repo = "libwhereami";
owner = "puppetlabs";
};
2018-03-02 20:58:52 -08:00
# post gcc7, upstream bug: https://tickets.puppetlabs.com/browse/FACT-1828
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated";
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 ];
platforms = platforms.linux;
};
}