python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / slstatus / default.nix
blob5badb7f1b35a33a1ed1fb985b7e23d2bf227ea6e
1 { lib, stdenv, fetchgit, pkg-config, writeText, libX11, conf ? null, patches ? [] }:
3 with lib;
5 stdenv.mkDerivation rec {
6   pname = "slstatus";
7   version = "unstable-2019-02-16";
9   src = fetchgit {
10     url = "https://git.suckless.org/slstatus";
11     rev = "b14e039639ed28005fbb8bddeb5b5fa0c93475ac";
12     sha256 = "0kayyhpmppybhwndxgabw48wsk9v8x9xdb05xrly9szkw3jbvgw4";
13   };
15   configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
16   preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
18   inherit patches;
20   nativeBuildInputs = [ pkg-config ];
21   buildInputs = [ libX11 ];
23   makeFlags = [ "CC:=$(CC)" ];
25   installFlags = [ "PREFIX=$(out)" ];
27   meta = {
28     homepage = "https://tools.suckless.org/slstatus/";
29     description = "status monitor for window managers that use WM_NAME like dwm";
30     license = licenses.isc;
31     maintainers = with maintainers; [ oxzi ];
32     platforms = platforms.linux;
33   };