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

27 lines
851 B
Nix
Raw Normal View History

2016-08-29 00:56:34 +00:00
{ stdenv, fetchurl, boost, cmake, cpp-hocon, curl, leatherman, libyamlcpp, openssl, ruby, utillinux }:
2015-07-27 03:31:47 +00:00
stdenv.mkDerivation rec {
name = "facter-${version}";
2016-08-29 00:56:34 +00:00
version = "3.4.1";
2015-07-27 03:31:47 +00:00
src = fetchurl {
url = "https://downloads.puppetlabs.com/facter/${name}.tar.gz";
2016-08-29 00:56:34 +00:00
sha256 = "1vvvqni68l3hmnxi8jp0n2rwzxyh1vmgv6xa2954h94dfax6dmcj";
2015-07-27 03:31:47 +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\"";
buildInputs = [ boost cmake cpp-hocon curl leatherman libyamlcpp openssl ruby utillinux ];
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;
};
}