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

29 lines
863 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-02-02 08:29:51 -08:00
version = "3.6.0";
2017-01-20 07:36:43 -08:00
src = fetchFromGitHub {
2017-02-02 08:29:51 -08:00
sha256 = "1fwvjd84nw39lgclkz4kn90z84fs9lsama3ikq0qs1in3y3jfmvi";
2017-01-20 07:36:43 -08:00
rev = version;
repo = "facter";
owner = "puppetlabs";
2015-07-26 20:31:47 -07:00
};
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
meta = with stdenv.lib; {
homepage = https://github.com/puppetlabs/facter;
description = "A system inventory tool";
license = licenses.asl20;
maintainers = [ maintainers.womfoo ];
platforms = platforms.linux;
};
}