Merge pull request #124579 from IreneKnapp/oneko

This commit is contained in:
Sandro 2021-06-03 17:28:34 +02:00 committed by GitHub
commit 8894fc5d49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 9 deletions

View file

@ -4355,6 +4355,16 @@
githubId = 54999; githubId = 54999;
name = "Ariel Nunez"; name = "Ariel Nunez";
}; };
irenes = {
name = "Irene Knapp";
email = "ireneista@gmail.com";
github = "IreneKnapp";
githubId = 157678;
keys = [{
longkeyid = "rsa4096/0xDBF252AFFB2619FD";
fingerprint = "E864 BDFA AB55 36FD C905 5195 DBF2 52AF FB26 19FD";
}];
};
ironpinguin = { ironpinguin = {
email = "michele@catalano.de"; email = "michele@catalano.de";
github = "ironpinguin"; github = "ironpinguin";

View file

@ -1,12 +1,14 @@
{ lib, stdenv, fetchurl, imake, gccmakedep, xlibsWrapper }: { lib, stdenv, fetchFromGitHub, imake, gccmakedep, xlibsWrapper }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version_name = "1.2.sakura.5"; version_name = "1.2.hanami.6";
version = "1.2.5"; version = "1.2.6";
pname = "oneko"; pname = "oneko";
src = fetchurl { src = fetchFromGitHub {
url = "http://www.daidouji.com/oneko/distfiles/oneko-${version_name}.tar.gz"; owner = "IreneKnapp";
sha256 = "2c2e05f1241e9b76f54475b5577cd4fb6670de058218d04a741a04ebd4a2b22f"; repo = "oneko";
rev = version_name;
sha256 = "0vx12v5fm8ar3f1g6jbpmd3b1q652d32nc67ahkf28djbqjgcbnc";
}; };
nativeBuildInputs = [ imake gccmakedep ]; nativeBuildInputs = [ imake gccmakedep ];
buildInputs = [ xlibsWrapper ]; buildInputs = [ xlibsWrapper ];
@ -22,9 +24,9 @@ stdenv.mkDerivation rec {
chasing around your mouse cursor. chasing around your mouse cursor.
When the cat is done catching the mouse, it starts sleeping. When the cat is done catching the mouse, it starts sleeping.
''; '';
homepage = "http://www.daidouji.com/oneko/"; homepage = "https://github.com/IreneKnapp/oneko";
license = licenses.publicDomain; license = with licenses; [ publicDomain ];
maintainers = [ maintainers.xaverdh ]; maintainers = with maintainers; [ xaverdh irenes ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }