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

24 lines
703 B
Nix
Raw Normal View History

2016-04-17 15:06:26 +00:00
{ stdenv, fetchurl, boost, cmake, curl, leatherman, libyamlcpp, openssl, utillinux }:
2015-07-27 03:31:47 +00:00
stdenv.mkDerivation rec {
name = "facter-${version}";
2016-05-21 15:48:07 +00:00
version = "3.1.6";
2015-07-27 03:31:47 +00:00
src = fetchurl {
url = "https://downloads.puppetlabs.com/facter/${name}.tar.gz";
2016-05-21 15:48:07 +00:00
sha256 = "1kv4k9zqpsiw362kk1rw1a4sixd0pmnh57ghd4k4pffr2dkmdfsv";
2015-07-27 03:31:47 +00:00
};
libyamlcpp_ = libyamlcpp.override { makePIC = true; };
2016-04-17 15:06:26 +00:00
buildInputs = [ boost cmake curl leatherman libyamlcpp_ openssl 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;
};
}