libcollectdclient: make client derive from collectd package

collectd: split version and name

libcollectdclient: make client derive from collectd package
This commit is contained in:
Sheena Artrip 2016-03-17 23:25:27 -04:00
parent dd177e62e3
commit 0bffa2f1a9
2 changed files with 8 additions and 14 deletions

View File

@ -1,14 +1,9 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, collectd }:
with stdenv.lib;
stdenv.mkDerivation rec {
version = "5.5.0";
name = "libcollectdclient-${version}";
tarname = "collectd-${version}";
src = fetchurl {
url = "http://collectd.org/files/${tarname}.tar.bz2";
sha256 = "847684cf5c10de1dc34145078af3fcf6e0d168ba98c14f1343b1062a4b569e88";
};
overrideDerivation collectd (oldAttrs: {
name = "libcollectdclient-${collectd.version}";
buildInputs = [ ];
configureFlags = [
"--without-daemon"
@ -18,8 +13,7 @@ stdenv.mkDerivation rec {
"-C src/libcollectdclient/"
];
NIX_CFLAGS_COMPILE = "-Wno-error=cpp";
}) // {
meta = with stdenv.lib; {
description = "C Library for collectd, a daemon which collects system performance statistics periodically";
homepage = http://collectd.org;

View File

@ -30,9 +30,9 @@
, varnish ? null
, yajl ? null
}:
stdenv.mkDerivation rec {
name = "collectd-5.5.0";
version = "5.5.0";
name = "collectd-${version}";
src = fetchurl {
url = "http://collectd.org/files/${name}.tar.bz2";