about summary refs log tree commit diff
path: root/pkgs/applications/misc/stw/default.nix
blob: 689fc9e81ce7f951eee094afd9815afd8aaf0584 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ 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 = "Simple text widget for X resembling the watch(1) command";
    license = licenses.mit;
    maintainers = with maintainers; [ somasis ];
    platforms = platforms.unix;
    broken = stdenv.isDarwin;
    mainProgram = "stw";
  };
}