81047829ea
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
14 lines
264 B
Nix
14 lines
264 B
Nix
{ stdenv, collectd }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "collectd-data";
|
|
inherit (collectd) meta src version;
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
dontFixup = true;
|
|
|
|
installPhase = ''
|
|
install -Dm444 -t $out/share/collectd/ src/*.{db,conf}
|
|
'';
|
|
}
|