summary refs log tree commit diff
path: root/pkgs/games/xcowsay/default.nix
blob: 89ca50b3a3321e37be1c0d756459e6b14e486b8f (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
34
35
36
37
38
39
{ lib, stdenv, fetchurl, makeWrapper, pkg-config
, dbus, dbus-glib, gtk3, gdk-pixbuf, librsvg
, fortune
}:

stdenv.mkDerivation rec {
  pname = "xcowsay";
  version = "1.5.1";

  src = fetchurl {
    url = "http://www.nickg.me.uk/files/xcowsay-${version}.tar.gz";
    sha256 = "sha256-wypsfAp634wbaAI+fxzmr3J5AmvQzChVi/wp/BPxiA0=";
  };

  buildInputs = [
    dbus
    dbus-glib
    gtk3
    gdk-pixbuf # loading cow images
    librsvg # dreaming SVG images
  ];
  nativeBuildInputs = [ makeWrapper pkg-config ];

  configureFlags = [ "--enable-dbus" ];

  postInstall = ''
    for tool in xcowdream xcowsay xcowthink xcowfortune; do
      wrapProgram $out/bin/$tool \
        --prefix PATH : $out/bin:${fortune}/bin
    done
  '';

  meta = with lib; {
    homepage = "http://www.doof.me.uk/xcowsay";
    description = "Tool to display a cute cow and messages";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ das_j ];
  };
}