mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
33 lines
915 B
Nix
33 lines
915 B
Nix
{ lib, stdenv, fetchgit, pkg-config, writeText, libX11, conf ? null, patches ? [] }:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "slstatus";
|
|
version = "unstable-2019-02-16";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.suckless.org/slstatus";
|
|
rev = "b14e039639ed28005fbb8bddeb5b5fa0c93475ac";
|
|
sha256 = "0kayyhpmppybhwndxgabw48wsk9v8x9xdb05xrly9szkw3jbvgw4";
|
|
};
|
|
|
|
configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
|
|
preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
|
|
|
|
inherit patches;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libX11 ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = {
|
|
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 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|