2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, boost, cmake, cpp-hocon, curl, leatherman, libwhereami, libyamlcpp, openssl, ruby, util-linux }:
|
2015-07-27 04:31:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "facter";
|
2021-05-01 15:03:04 +01:00
|
|
|
version = "3.14.17";
|
2017-02-02 16:29:51 +00:00
|
|
|
|
2017-01-20 15:36:43 +00:00
|
|
|
src = fetchFromGitHub {
|
2021-05-01 15:03:04 +01:00
|
|
|
sha256 = "sha256-RvsUt1DyN8Xr+Xtz84mbKlDwxLewgK6qklYVdQHu6q0=";
|
2017-01-20 15:36:43 +00:00
|
|
|
rev = version;
|
2019-10-20 17:47:44 +01:00
|
|
|
repo = pname;
|
2017-01-20 15:36:43 +00:00
|
|
|
owner = "puppetlabs";
|
2015-07-27 04:31:47 +01:00
|
|
|
};
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
CXXFLAGS = lib.optionalString stdenv.cc.isGNU "-fpermissive -Wno-error=catch-value";
|
|
|
|
NIX_LDFLAGS = lib.optionalString stdenv.isLinux "-lblkid";
|
2017-07-31 22:30:59 +01:00
|
|
|
|
2019-11-04 21:52:17 +00:00
|
|
|
cmakeFlags = [
|
2020-07-04 10:23:00 +01:00
|
|
|
"-DFACTER_RUBY=${ruby}/lib/libruby${stdenv.hostPlatform.extensions.sharedLibrary}"
|
2019-10-20 17:47:44 +01:00
|
|
|
"-DRUBY_LIB_INSTALL=${placeholder "out"}/lib/ruby"
|
|
|
|
];
|
2016-05-22 10:09:13 +01:00
|
|
|
|
2020-07-04 10:23:00 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
2019-11-04 21:52:17 +00:00
|
|
|
|
2019-10-20 17:47:44 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2020-11-24 15:29:28 +00:00
|
|
|
buildInputs = [ boost cpp-hocon curl leatherman libwhereami libyamlcpp openssl ruby util-linux ];
|
2015-07-27 04:31:47 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-20 17:47:44 +01:00
|
|
|
homepage = "https://github.com/puppetlabs/facter";
|
2015-07-27 04:31:47 +01:00
|
|
|
description = "A system inventory tool";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.womfoo ];
|
2020-07-04 10:23:00 +01:00
|
|
|
platforms = platforms.unix;
|
2015-07-27 04:31:47 +01:00
|
|
|
};
|
|
|
|
}
|