2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, imake, gccmakedep, xlibsWrapper }:
|
2017-11-23 01:18:11 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-11-05 00:35:53 +01:00
|
|
|
version_name = "1.2.sakura.5";
|
|
|
|
version = "1.2.5";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "oneko";
|
2017-11-23 01:18:11 +01:00
|
|
|
src = fetchurl {
|
2018-11-05 00:35:53 +01:00
|
|
|
url = "http://www.daidouji.com/oneko/distfiles/oneko-${version_name}.tar.gz";
|
2017-11-23 01:18:11 +01:00
|
|
|
sha256 = "2c2e05f1241e9b76f54475b5577cd4fb6670de058218d04a741a04ebd4a2b22f";
|
|
|
|
};
|
2018-11-28 02:54:15 +01:00
|
|
|
nativeBuildInputs = [ imake gccmakedep ];
|
|
|
|
buildInputs = [ xlibsWrapper ];
|
2018-07-17 22:11:16 +02:00
|
|
|
|
2018-11-28 02:54:15 +01:00
|
|
|
makeFlags = [ "BINDIR=$(out)/bin" "MANPATH=$(out)/share/man" ];
|
2019-11-04 13:33:53 +01:00
|
|
|
installTargets = [ "install" "install.man" ];
|
2017-11-23 01:18:11 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-11-23 01:18:11 +01:00
|
|
|
description = "Creates a cute cat chasing around your mouse cursor";
|
|
|
|
longDescription = ''
|
|
|
|
Oneko changes your mouse cursor into a mouse
|
|
|
|
and creates a little cute cat, which starts
|
|
|
|
chasing around your mouse cursor.
|
|
|
|
When the cat is done catching the mouse, it starts sleeping.
|
|
|
|
'';
|
|
|
|
homepage = "http://www.daidouji.com/oneko/";
|
|
|
|
license = licenses.publicDomain;
|
|
|
|
maintainers = [ maintainers.xaverdh ];
|
2018-04-20 01:08:23 +02:00
|
|
|
platforms = platforms.unix;
|
2017-11-23 01:18:11 +01:00
|
|
|
};
|
|
|
|
}
|