2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, libxml2, ncurses, bison, flex }:
|
2016-07-26 09:54:43 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "tiptop";
|
2017-10-10 16:10:42 +00:00
|
|
|
version = "2.3.1";
|
2016-07-26 09:54:43 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "${meta.homepage}/releases/${pname}-${version}.tar.gz";
|
2017-10-10 16:10:42 +00:00
|
|
|
sha256 = "10j1138y3cj3hsmfz4w0bmk90523b0prqwi9nhb4z8xvjnf49i2i";
|
2016-07-26 09:54:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [(fetchpatch {
|
|
|
|
name = "reproducibility.patch";
|
2018-11-24 23:26:12 +00:00
|
|
|
url = "https://salsa.debian.org/debian/tiptop/raw/debian/2.3.1-1/debian/patches/0001-fix-reproducibility-of-build-process.patch";
|
2016-07-26 09:54:43 +00:00
|
|
|
sha256 = "116l7n3nl9lj691i7j8x0d0za1i6zpqgghw5d70qfpb17c04cblp";
|
|
|
|
})];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace ./configure --replace -lcurses -lncurses
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ flex bison ];
|
|
|
|
buildInputs = [ libxml2 ncurses ];
|
|
|
|
|
2019-10-30 11:34:47 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2";
|
2016-07-26 09:54:43 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-07-26 09:54:43 +00:00
|
|
|
description = "Performance monitoring tool for Linux";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://tiptop.gforge.inria.fr";
|
2016-07-26 09:54:43 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|