pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / xcowsay / default.nix
blob52569e044f06e1fd095748c4821bf10467bc0ac1
1 { lib, stdenv, fetchurl, makeWrapper, pkg-config
2 , dbus, dbus-glib, gtk3, gdk-pixbuf, librsvg
3 , fortune
4 }:
6 stdenv.mkDerivation rec {
7   pname = "xcowsay";
8   version = "1.6";
10   src = fetchurl {
11     url = "http://www.nickg.me.uk/files/xcowsay-${version}.tar.gz";
12     sha256 = "sha256-RqzoZP8o0tIfS3BY8CleGNAEGhIMEHipUfpDxOD1yMU=";
13   };
15   buildInputs = [
16     dbus
17     dbus-glib
18     gtk3
19     gdk-pixbuf # loading cow images
20     librsvg # dreaming SVG images
21   ];
22   nativeBuildInputs = [ makeWrapper pkg-config ];
24   configureFlags = [ "--enable-dbus" ];
26   postInstall = ''
27     for tool in xcowdream xcowsay xcowthink xcowfortune; do
28       wrapProgram $out/bin/$tool \
29         --prefix PATH : $out/bin:${fortune}/bin
30     done
31   '';
33   meta = with lib; {
34     homepage = "http://www.doof.me.uk/xcowsay";
35     description = "Tool to display a cute cow and messages";
36     license = licenses.gpl3Plus;
37     maintainers = with maintainers; [ das_j ];
38   };