3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libwhereami/default.nix

29 lines
741 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
2017-09-25 11:59:17 +01:00
stdenv.mkDerivation rec {
pname = "libwhereami";
2020-06-10 14:50:37 +01:00
version = "0.5.0";
2017-09-25 11:59:17 +01:00
src = fetchFromGitHub {
2020-06-10 14:50:37 +01:00
sha256 = "05fc28dri2h858kxbvldk5b6wd5is3fjcdsiqj3nxf95i66bb3xp";
2017-09-25 11:59:17 +01:00
rev = version;
repo = "libwhereami";
owner = "puppetlabs";
};
2020-07-04 10:20:00 +01:00
NIX_CFLAGS_COMPILE = "-Wno-error";
2018-03-03 04:58:52 +00:00
2017-09-25 11:59:17 +01:00
nativeBuildInputs = [ cmake ];
buildInputs = [ boost curl leatherman ];
meta = with lib; {
2017-09-25 11:59:17 +01:00
inherit (src.meta) homepage;
description = "Library to report hypervisor information from inside a VM";
license = licenses.asl20;
maintainers = [ maintainers.womfoo ];
2020-07-04 10:20:00 +01:00
platforms = with platforms; [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; # fails on aarch64
2017-09-25 11:59:17 +01:00
};
}