9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
31 lines
710 B
Nix
31 lines
710 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, gdk-pixbuf, gtk2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "trayer-1.1.8";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ gdk-pixbuf gtk2 ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sargon";
|
|
repo = "trayer-srg";
|
|
rev = name;
|
|
sha256 = "1mvhwaqa9bng9wh3jg3b7y8gl7nprbydmhg963xg0r076jyzv0cg";
|
|
};
|
|
|
|
preConfigure = ''
|
|
patchShebangs configure
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/sargon/trayer-srg";
|
|
license = licenses.mit;
|
|
description = "A lightweight GTK2-based systray for UNIX desktop";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|
|
|