lol

Merge pull request #124579 from IreneKnapp/oneko

authored by

Sandro and committed by
GitHub
8894fc5d 9620c833

+21 -9
+10
maintainers/maintainer-list.nix
··· 4355 4355 githubId = 54999; 4356 4356 name = "Ariel Nunez"; 4357 4357 }; 4358 + irenes = { 4359 + name = "Irene Knapp"; 4360 + email = "ireneista@gmail.com"; 4361 + github = "IreneKnapp"; 4362 + githubId = 157678; 4363 + keys = [{ 4364 + longkeyid = "rsa4096/0xDBF252AFFB2619FD"; 4365 + fingerprint = "E864 BDFA AB55 36FD C905 5195 DBF2 52AF FB26 19FD"; 4366 + }]; 4367 + }; 4358 4368 ironpinguin = { 4359 4369 email = "michele@catalano.de"; 4360 4370 github = "ironpinguin";
+11 -9
pkgs/applications/misc/oneko/default.nix
··· 1 - { lib, stdenv, fetchurl, imake, gccmakedep, xlibsWrapper }: 1 + { lib, stdenv, fetchFromGitHub, imake, gccmakedep, xlibsWrapper }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version_name = "1.2.sakura.5"; 5 - version = "1.2.5"; 4 + version_name = "1.2.hanami.6"; 5 + version = "1.2.6"; 6 6 pname = "oneko"; 7 - src = fetchurl { 8 - url = "http://www.daidouji.com/oneko/distfiles/oneko-${version_name}.tar.gz"; 9 - sha256 = "2c2e05f1241e9b76f54475b5577cd4fb6670de058218d04a741a04ebd4a2b22f"; 7 + src = fetchFromGitHub { 8 + owner = "IreneKnapp"; 9 + repo = "oneko"; 10 + rev = version_name; 11 + sha256 = "0vx12v5fm8ar3f1g6jbpmd3b1q652d32nc67ahkf28djbqjgcbnc"; 10 12 }; 11 13 nativeBuildInputs = [ imake gccmakedep ]; 12 14 buildInputs = [ xlibsWrapper ]; ··· 22 24 chasing around your mouse cursor. 23 25 When the cat is done catching the mouse, it starts sleeping. 24 26 ''; 25 - homepage = "http://www.daidouji.com/oneko/"; 26 - license = licenses.publicDomain; 27 - maintainers = [ maintainers.xaverdh ]; 27 + homepage = "https://github.com/IreneKnapp/oneko"; 28 + license = with licenses; [ publicDomain ]; 29 + maintainers = with maintainers; [ xaverdh irenes ]; 28 30 platforms = platforms.unix; 29 31 }; 30 32 }