1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-22 14:47:06 +00:00
nixpkgs/pkgs/development/libraries/libwhereami/default.nix

31 lines
773 B
Nix
Raw Normal View History

2017-09-25 11:59:17 +01:00
{ stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
stdenv.mkDerivation rec {
pname = "libwhereami";
2019-11-02 22:44:23 +00:00
version = "0.3.1";
2017-09-25 11:59:17 +01:00
src = fetchFromGitHub {
2019-11-02 22:44:23 +00:00
sha256 = "16xjb6zp60ma76aa3kq3q8i8zn0n61gf39fny12cny8nggwjpbww";
2017-09-25 11:59:17 +01:00
rev = version;
repo = "libwhereami";
owner = "puppetlabs";
};
2019-10-30 01:29:30 +00:00
NIX_CFLAGS_COMPILE = "-Wno-error=catch-value";
2018-03-03 04:58:52 +00:00
2017-09-25 11:59:17 +01: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 = with platforms; [ "i686-linux" "x86_64-linux" ]; # fails on aarch64
2017-09-25 11:59:17 +01:00
};
}