2021-05-31 16:01:53 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, imake, gccmakedep, xlibsWrapper }:
|
2017-11-23 00:18:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-05-31 16:01:53 +01:00
|
|
|
version_name = "1.2.hanami.6";
|
|
|
|
version = "1.2.6";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "oneko";
|
2021-05-31 16:01:53 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "IreneKnapp";
|
|
|
|
repo = "oneko";
|
|
|
|
rev = version_name;
|
|
|
|
sha256 = "0vx12v5fm8ar3f1g6jbpmd3b1q652d32nc67ahkf28djbqjgcbnc";
|
2017-11-23 00:18:11 +00:00
|
|
|
};
|
2018-11-28 01:54:15 +00:00
|
|
|
nativeBuildInputs = [ imake gccmakedep ];
|
|
|
|
buildInputs = [ xlibsWrapper ];
|
2018-07-17 21:11:16 +01:00
|
|
|
|
2018-11-28 01:54:15 +00:00
|
|
|
makeFlags = [ "BINDIR=$(out)/bin" "MANPATH=$(out)/share/man" ];
|
2019-11-04 12:33:53 +00:00
|
|
|
installTargets = [ "install" "install.man" ];
|
2017-11-23 00:18:11 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-11-23 00:18:11 +00: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.
|
|
|
|
'';
|
2021-05-31 16:01:53 +01:00
|
|
|
homepage = "https://github.com/IreneKnapp/oneko";
|
|
|
|
license = with licenses; [ publicDomain ];
|
|
|
|
maintainers = with maintainers; [ xaverdh irenes ];
|
2018-04-20 00:08:23 +01:00
|
|
|
platforms = platforms.unix;
|
2017-11-23 00:18:11 +00:00
|
|
|
};
|
|
|
|
}
|