lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

facter: init at 3.0.2

+25
+23
pkgs/tools/system/facter/default.nix
··· 1 + { stdenv, fetchurl, boost, cmake, curl, libyamlcpp, openssl, utillinux }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "facter-${version}"; 5 + version = "3.0.2"; 6 + src = fetchurl { 7 + url = "https://downloads.puppetlabs.com/facter/${name}.tar.gz"; 8 + sha256 = "1myf1r827bh3n0snkzwj2jnc0sax9bq6z1vv9gr90rqr73lixvig"; 9 + }; 10 + 11 + libyamlcpp_ = libyamlcpp.override { makePIC = true; }; 12 + 13 + buildInputs = [ boost cmake curl libyamlcpp_ openssl utillinux ]; 14 + 15 + meta = with stdenv.lib; { 16 + homepage = https://github.com/puppetlabs/facter; 17 + description = "A system inventory tool"; 18 + license = licenses.asl20; 19 + maintainers = [ maintainers.womfoo ]; 20 + platforms = platforms.linux; 21 + }; 22 + 23 + }
+2
pkgs/top-level/all-packages.nix
··· 15143 15143 15144 15144 udevil = callPackage ../applications/misc/udevil {}; 15145 15145 15146 + facter = callPackage ../tools/system/facter {}; 15147 + 15146 15148 }; in self; in pkgs