mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchgit
|
|
, pkg-config
|
|
, writeText
|
|
, libX11
|
|
, libXau
|
|
, libXdmcp
|
|
, conf ? null
|
|
, patches ? [ ]
|
|
# update script dependencies
|
|
, gitUpdater
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "slstatus";
|
|
version = "1.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.suckless.org/slstatus";
|
|
rev = version;
|
|
hash = "sha256-cFah6EgApslLSlJaOy/5W9ZV9Z1lzfKye/rRh9Om3T4=";
|
|
};
|
|
|
|
preBuild =
|
|
let
|
|
configFile = if lib.isDerivation conf || builtins.isPath conf then conf else writeText "config.def.h" conf;
|
|
in
|
|
''
|
|
${lib.optionalString (conf!=null) "cp ${configFile} config.def.h"}
|
|
makeFlagsArray+=(LDLIBS="-lX11 -lxcb -lXau -lXdmcp" CC=$CC)
|
|
'';
|
|
|
|
inherit patches;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libX11 libXau libXdmcp ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
passthru.updateScript = gitUpdater {};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://tools.suckless.org/slstatus/";
|
|
description = "status monitor for window managers that use WM_NAME like dwm";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ oxzi qusic ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "slstatus";
|
|
};
|
|
}
|