about summary refs log tree commit diff
path: root/pkgs/applications/misc/sent/default.nix
blob: c6430af55608d10d5d07bde98fdda23bf95a738b (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
{ stdenv, fetchurl, libpng, libX11, libXft
, patches ? [] }:

stdenv.mkDerivation rec {
  name = "sent-0.2";

  src = fetchurl {
    url = "http://dl.suckless.org/tools/${name}.tar.gz";
    sha256 = "0xhh752hwaa26k4q6wvrb9jnpbnylss2aw6z11j7l9rav7wn3fak";
  };

  buildInputs = [ libpng libX11 libXft ];

  inherit patches;

  installFlags = [ "PREFIX=$(out)" ];

  meta = with stdenv.lib; {
    description = "A simple plaintext presentation tool";
    homepage = http://tools.suckless.org/sent/;
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = with maintainers; [ pSub ];
  };
}