4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
36 lines
1.0 KiB
Nix
36 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, libxml2, ncurses, bison, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tiptop";
|
|
version = "2.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "10j1138y3cj3hsmfz4w0bmk90523b0prqwi9nhb4z8xvjnf49i2i";
|
|
};
|
|
|
|
patches = [(fetchpatch {
|
|
name = "reproducibility.patch";
|
|
url = "https://salsa.debian.org/debian/tiptop/raw/debian/2.3.1-1/debian/patches/0001-fix-reproducibility-of-build-process.patch";
|
|
sha256 = "116l7n3nl9lj691i7j8x0d0za1i6zpqgghw5d70qfpb17c04cblp";
|
|
})];
|
|
|
|
postPatch = ''
|
|
substituteInPlace ./configure --replace -lcurses -lncurses
|
|
'';
|
|
|
|
nativeBuildInputs = [ flex bison ];
|
|
buildInputs = [ libxml2 ncurses ];
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2";
|
|
|
|
meta = with lib; {
|
|
description = "Performance monitoring tool for Linux";
|
|
homepage = "http://tiptop.gforge.inria.fr";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.vcunat ];
|
|
};
|
|
}
|
|
|