mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
41 lines
721 B
Nix
41 lines
721 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, libX11
|
|
, libXext
|
|
, libXfixes
|
|
, libXmu
|
|
, libXpm
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "wmsystemtray";
|
|
version = "1.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/wmsystemtray/wmsystemtray/wmsystemtray-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-jt70NpHp//BxAA4pFmx8GtQgwJVukGgVEGHogcisl+k=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXext
|
|
libXfixes
|
|
libXmu
|
|
libXpm
|
|
];
|
|
|
|
meta = {
|
|
description = "System tray for Windowmaker";
|
|
homepage = "http://wmsystemtray.sourceforge.net";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|