Unverified Commit 2dcb8491 authored by Kylie McClain's avatar Kylie McClain
Browse files

stw: init at unstable-2022-02-04

parent a785565f
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, libX11
, fontconfig
, libXft
, libXrender
}:

stdenv.mkDerivation rec {
  pname = "stw";
  version = "unstable-2022-02-04";

  src = fetchFromGitHub {
    owner = "sineemore";
    repo = pname;
    rev = "c034e04ac912c157f9faa35cb769ba93d92486a0";
    sha256 = "sha256-YohHF1O0lm6QWJv/wkS4RVJvWaOjcYSZNls6tt4hbqo==";
  };

  buildInputs = [ libX11 fontconfig libXft libXrender ];

  makeFlags = [ "CC:=$(CC)" "PREFIX=$(out)" ];

  meta = with lib; {
    description = "A simple text widget for X resembling the watch(1) command";
    license = licenses.mit;
    maintainers = with maintainers; [ somasis ];
    platforms = platforms.unix;
    broken = stdenv.isDarwin;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -29579,6 +29579,8 @@ with pkgs;
    ncurses = ncurses5;
  };
  stw = callPackage ../applications/misc/stw { };
  styx = callPackage ../applications/misc/styx { };
  sway-launcher-desktop = callPackage ../applications/misc/sway-launcher-desktop { };