tiptop: init at 2.3
This commit is contained in:
parent
3bb18c68d2
commit
375ae11a34
|
@ -0,0 +1,36 @@
|
||||||
|
{ stdenv, fetchurl, fetchpatch, libxml2, ncurses, bison, flex }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "tiptop-${version}";
|
||||||
|
version = "2.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "${meta.homepage}/releases/${name}.tar.gz";
|
||||||
|
sha256 = "1jhqmcgx664ygayw471cg05bxc4ikxn35ccyiswymjhanicfj1rz";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [(fetchpatch {
|
||||||
|
name = "reproducibility.patch";
|
||||||
|
url = "http://anonscm.debian.org/cgit/collab-maint/tiptop.git/plain/debian/"
|
||||||
|
+ "patches/0001-fix-reproducibility-of-build-process.patch?id=c777d0d5803";
|
||||||
|
sha256 = "116l7n3nl9lj691i7j8x0d0za1i6zpqgghw5d70qfpb17c04cblp";
|
||||||
|
})];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace ./configure --replace -lcurses -lncurses
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ flex bison ];
|
||||||
|
buildInputs = [ libxml2 ncurses ];
|
||||||
|
|
||||||
|
NIX_CFLAGS_COMPILE = [ "-I${libxml2.dev}/include/libxml2" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Performance monitoring tool for Linux";
|
||||||
|
homepage = http://tiptop.gforge.inria.fr;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.vcunat ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -11662,6 +11662,8 @@ in
|
||||||
# FIXME: `tcp-wrapper' is actually not OS-specific.
|
# FIXME: `tcp-wrapper' is actually not OS-specific.
|
||||||
tcp_wrappers = callPackage ../os-specific/linux/tcp-wrappers { };
|
tcp_wrappers = callPackage ../os-specific/linux/tcp-wrappers { };
|
||||||
|
|
||||||
|
tiptop = callPackage ../os-specific/linux/tiptop { };
|
||||||
|
|
||||||
trinity = callPackage ../os-specific/linux/trinity { };
|
trinity = callPackage ../os-specific/linux/trinity { };
|
||||||
|
|
||||||
tunctl = callPackage ../os-specific/linux/tunctl { };
|
tunctl = callPackage ../os-specific/linux/tunctl { };
|
||||||
|
|
Loading…
Reference in New Issue