1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/tools/system/collectd/data.nix

15 lines
259 B
Nix
Raw Normal View History

{ stdenv, collectd }:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
inherit (collectd) meta version;
pname = "collectd-data";
2021-07-20 11:28:59 +01:00
dontUnpack = true;
installPhase = ''
mkdir -p $out/share/collectd
cp ${collectd}/share/collectd/*.{db,conf} $out/share/collectd/
'';
}