nixpkgs-suyu/pkgs/tools/system/facter/default.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

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