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

35 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, boost, cmake, cpp-hocon, curl, leatherman, libwhereami, libyamlcpp, openssl, ruby, util-linux }:
2015-07-26 20:31:47 -07:00
stdenv.mkDerivation rec {
pname = "facter";
2021-02-12 00:39:22 -08:00
version = "3.14.16";
2017-02-02 08:29:51 -08:00
2017-01-20 07:36:43 -08:00
src = fetchFromGitHub {
2021-02-12 00:39:22 -08:00
sha256 = "sha256-VZIeyLJBlh5/r0EHinSiPiQyCNUBFBYjDZ6nTVnZBbE=";
2017-01-20 07:36:43 -08:00
rev = version;
repo = pname;
2017-01-20 07:36:43 -08:00
owner = "puppetlabs";
2015-07-26 20:31:47 -07:00
};
2021-01-15 01:19:50 -08:00
CXXFLAGS = lib.optionalString stdenv.cc.isGNU "-fpermissive -Wno-error=catch-value";
NIX_LDFLAGS = lib.optionalString stdenv.isLinux "-lblkid";
2017-07-31 14:30:59 -07:00
2019-11-04 13:52:17 -08:00
cmakeFlags = [
2020-07-04 02:23:00 -07:00
"-DFACTER_RUBY=${ruby}/lib/libruby${stdenv.hostPlatform.extensions.sharedLibrary}"
"-DRUBY_LIB_INSTALL=${placeholder "out"}/lib/ruby"
];
2016-05-22 02:09:13 -07:00
2020-07-04 02:23:00 -07:00
NIX_CFLAGS_COMPILE = "-Wno-error";
2019-11-04 13:52:17 -08:00
nativeBuildInputs = [ cmake ];
2020-11-24 07:29:28 -08:00
buildInputs = [ boost cpp-hocon curl leatherman libwhereami libyamlcpp openssl ruby util-linux ];
2015-07-26 20:31:47 -07:00
meta = with lib; {
homepage = "https://github.com/puppetlabs/facter";
2015-07-26 20:31:47 -07:00
description = "A system inventory tool";
license = licenses.asl20;
maintainers = [ maintainers.womfoo ];
2020-07-04 02:23:00 -07:00
platforms = platforms.unix;
2015-07-26 20:31:47 -07:00
};
}