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 03:59:17 -07:00
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 ];
meta = with lib; {
2017-09-25 03:59:17 -07:00
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
};
}