2017-09-25 11:02:00 +00:00
|
|
|
{ stdenv, fetchFromGitHub, boost, cmake, cpp-hocon, curl, leatherman, libwhereami, libyamlcpp, openssl, ruby, utillinux }:
|
2015-07-27 03:31:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "facter-${version}";
|
2018-07-22 02:22:50 +00:00
|
|
|
version = "3.11.3";
|
2017-02-02 16:29:51 +00:00
|
|
|
|
2017-01-20 15:36:43 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-07-22 02:22:50 +00:00
|
|
|
sha256 = "1lkbcg6vlyrahgqhyp2a9jb91az1w4wgxiirfnyr9wzk2bbmmz7n";
|
2017-01-20 15:36:43 +00:00
|
|
|
rev = version;
|
|
|
|
repo = "facter";
|
|
|
|
owner = "puppetlabs";
|
2015-07-27 03:31:47 +00:00
|
|
|
};
|
|
|
|
|
2017-07-31 21:30:59 +00:00
|
|
|
CXXFLAGS = "-fpermissive";
|
2017-08-07 14:33:43 +00:00
|
|
|
NIX_LDFLAGS = "-lblkid";
|
2017-07-31 21:30:59 +00:00
|
|
|
|
2016-05-22 09:09:13 +00:00
|
|
|
cmakeFlags = [ "-DFACTER_RUBY=${ruby}/lib/libruby.so" ];
|
|
|
|
|
|
|
|
# since we cant expand $out in cmakeFlags
|
|
|
|
preConfigure = "cmakeFlags+=\" -DRUBY_LIB_INSTALL=$out/lib/ruby\"";
|
|
|
|
|
2017-09-25 11:02:00 +00:00
|
|
|
buildInputs = [ boost cmake cpp-hocon curl leatherman libwhereami libyamlcpp openssl ruby utillinux ];
|
2015-07-27 03:31:47 +00:00
|
|
|
|
2017-07-31 21:30:59 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-07-27 03:31:47 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/puppetlabs/facter;
|
|
|
|
description = "A system inventory tool";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.womfoo ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|