3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #79024 from helsinki-systems/xcowsay-init

xcowsay: Init at 1.5
This commit is contained in:
Lassulus 2020-08-26 00:03:40 +02:00 committed by GitHub
commit 8396051289
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{ stdenv, fetchurl, makeWrapper, pkg-config
, 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
'';
meta = with stdenv.lib; {
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 ];
};
}

View file

@ -25148,6 +25148,8 @@ in
tk = tk-8_5;
};
xcowsay = callPackage ../games/xcowsay { };
xjump = callPackage ../games/xjump { };
# TODO: the corresponding nix file is missing
# xracer = callPackage ../games/xracer { };