mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
b2f7b14380
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/facter/versions
34 lines
980 B
Nix
34 lines
980 B
Nix
{ stdenv, fetchFromGitHub, boost, cmake, cpp-hocon, curl, leatherman, libwhereami, libyamlcpp, openssl, ruby, utillinux }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "facter-${version}";
|
|
version = "3.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "1bg044j3dv6kcksy3cyda650ara8s4awdf665k10gaaxa0gwn0jj";
|
|
rev = version;
|
|
repo = "facter";
|
|
owner = "puppetlabs";
|
|
};
|
|
|
|
CXXFLAGS = "-fpermissive";
|
|
NIX_LDFLAGS = "-lblkid";
|
|
|
|
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 libwhereami libyamlcpp openssl ruby utillinux ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/puppetlabs/facter;
|
|
description = "A system inventory tool";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.womfoo ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|