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

34 lines
964 B
Nix
Raw Normal View History

2017-01-20 07:36:43 -08:00
{ stdenv, fetchFromGitHub, boost, cmake, cpp-hocon, curl, leatherman, libyamlcpp, openssl, ruby, utillinux }:
2015-07-26 20:31:47 -07:00
stdenv.mkDerivation rec {
name = "facter-${version}";
2017-07-31 14:30:59 -07:00
version = "3.6.6";
2017-02-02 08:29:51 -08:00
2017-01-20 07:36:43 -08:00
src = fetchFromGitHub {
2017-07-31 14:30:59 -07:00
sha256 = "07jphvwfmvrq28f8k15k16kz090zvb11nn6bd895fz5axag01ins";
2017-01-20 07:36:43 -08:00
rev = version;
repo = "facter";
owner = "puppetlabs";
2015-07-26 20:31:47 -07:00
};
2017-07-31 14:30:59 -07:00
CXXFLAGS = "-fpermissive";
NIX_CFLAGS_COMPILE = "-Wno-error";
2016-05-22 02:09:13 -07:00
cmakeFlags = [ "-DFACTER_RUBY=${ruby}/lib/libruby.so" ];
# since we cant expand $out in cmakeFlags
preConfigure = "cmakeFlags+=\" -DRUBY_LIB_INSTALL=$out/lib/ruby\"";
buildInputs = [ boost cmake cpp-hocon curl leatherman libyamlcpp openssl ruby utillinux ];
2015-07-26 20:31:47 -07:00
2017-07-31 14:30:59 -07:00
enableParallelBuilding = true;
2015-07-26 20:31:47 -07: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;
};
}