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

37 lines
1,019 B
Nix
Raw Normal View History

2017-09-25 13:02:00 +02:00
{ stdenv, fetchFromGitHub, boost, cmake, cpp-hocon, curl, leatherman, libwhereami, libyamlcpp, openssl, ruby, utillinux }:
2015-07-27 05:31:47 +02:00
stdenv.mkDerivation rec {
pname = "facter";
2020-04-05 20:18:21 +02:00
version = "3.14.9";
2017-02-02 17:29:51 +01:00
2017-01-20 16:36:43 +01:00
src = fetchFromGitHub {
2020-04-05 20:18:21 +02:00
sha256 = "1c8g4fg8c9x816xx3m33njfn9h6ksl8g4rmc20y39v1y9jn72vxk";
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
};
2019-01-11 14:27:07 +01:00
CXXFLAGS = "-fpermissive -Wno-error=catch-value";
2017-08-07 16:33:43 +02:00
NIX_LDFLAGS = "-lblkid";
2017-07-31 23:30:59 +02:00
2019-11-04 22:52:17 +01:00
cmakeFlags = [
"-DFACTER_RUBY=${ruby}/lib/libruby.so"
"-DRUBY_LIB_INSTALL=${placeholder "out"}/lib/ruby"
];
2016-05-22 11:09:13 +02:00
2019-11-04 22:52:17 +01:00
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-copy";
nativeBuildInputs = [ cmake ];
buildInputs = [ boost cpp-hocon curl leatherman libwhereami libyamlcpp openssl ruby utillinux ];
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 ];
platforms = platforms.linux;
};
}