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
82 lines
1.3 KiB
Nix
82 lines
1.3 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitLab
|
|
, pkg-config
|
|
, cmake
|
|
, gettext
|
|
, cairo
|
|
, pango
|
|
, pcre
|
|
, glib
|
|
, imlib2
|
|
, gtk2
|
|
, libXinerama
|
|
, libXrender
|
|
, libXcomposite
|
|
, libXdamage
|
|
, libX11
|
|
, libXrandr
|
|
, librsvg
|
|
, libpthreadstubs
|
|
, libXdmcp
|
|
, libstartup_notification
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tint2";
|
|
version = "16.7";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "o9000";
|
|
repo = "tint2";
|
|
rev = version;
|
|
sha256 = "1937z0kixb6r82izj12jy4x8z4n96dfq1hx05vcsvsg1sx3wxgb0";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
gettext
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
pango
|
|
pcre
|
|
glib
|
|
imlib2
|
|
gtk2
|
|
libXinerama
|
|
libXrender
|
|
libXcomposite
|
|
libXdamage
|
|
libX11
|
|
libXrandr
|
|
librsvg
|
|
libpthreadstubs
|
|
libXdmcp
|
|
libstartup_notification
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-Ddocdir=share/doc/${pname}"
|
|
];
|
|
|
|
postPatch = ''
|
|
for f in ./src/launcher/apps-common.c \
|
|
./src/launcher/icon-theme-common.c
|
|
do
|
|
substituteInPlace $f --replace /usr/share/ /run/current-system/sw/share/
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.com/o9000/tint2";
|
|
description = "Simple panel/taskbar unintrusive and light (memory, cpu, aestetic)";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|