2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, pkg-config
|
2020-02-01 17:26:37 +00:00
|
|
|
, dbus, dbus-glib, gtk3, gdk-pixbuf, librsvg
|
|
|
|
, fortune
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "xcowsay";
|
|
|
|
version = "1.5";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.nickg.me.uk/files/xcowsay-${version}.tar.gz";
|
|
|
|
sha256 = "0pyaa062z1ag26dhkm1yzp2hivnlmhlpqn5xg7mx9r1m652mm91y";
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-02-01 17:26:37 +00:00
|
|
|
homepage = "http://www.doof.me.uk/xcowsay";
|
|
|
|
description =
|
|
|
|
"A program based on cowsay that displays a cute cow and message on your desktop";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ das_j ];
|
|
|
|
};
|
|
|
|
}
|