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

32 lines
760 B
Nix
Raw Normal View History

2017-09-25 12:59:17 +02:00
{ stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
stdenv.mkDerivation rec {
pname = "libwhereami";
2019-03-08 19:18:35 +01:00
version = "0.2.2";
2017-09-25 12:59:17 +02:00
src = fetchFromGitHub {
2019-03-08 19:18:35 +01:00
sha256 = "084n153jaq8fmhjififk0xlx1d1i3lclnw2j3ly8bixvc392vzly";
2017-09-25 12:59:17 +02:00
rev = version;
repo = "libwhereami";
owner = "puppetlabs";
};
NIX_CFLAGS_COMPILE = [ "-Wno-error=catch-value" ];
2018-03-03 05:58:52 +01:00
2017-09-25 12:59:17 +02: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;
badPlatforms = platforms.arm;
2017-09-25 12:59:17 +02:00
};
}