mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
15 lines
273 B
Nix
15 lines
273 B
Nix
{ stdenv, collectd }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (collectd) meta version;
|
|
|
|
pname = "collectd-data";
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/collectd
|
|
cp ${collectd}/share/collectd/*.{db,conf} $out/share/collectd/
|
|
'';
|
|
}
|