mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #124579 from IreneKnapp/oneko
This commit is contained in:
commit
8894fc5d49
2 changed files with 21 additions and 9 deletions
|
@ -4355,6 +4355,16 @@
|
|||
githubId = 54999;
|
||||
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 = {
|
||||
email = "michele@catalano.de";
|
||||
github = "ironpinguin";
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
{ lib, stdenv, fetchurl, imake, gccmakedep, xlibsWrapper }:
|
||||
{ lib, stdenv, fetchFromGitHub, imake, gccmakedep, xlibsWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version_name = "1.2.sakura.5";
|
||||
version = "1.2.5";
|
||||
version_name = "1.2.hanami.6";
|
||||
version = "1.2.6";
|
||||
pname = "oneko";
|
||||
src = fetchurl {
|
||||
url = "http://www.daidouji.com/oneko/distfiles/oneko-${version_name}.tar.gz";
|
||||
sha256 = "2c2e05f1241e9b76f54475b5577cd4fb6670de058218d04a741a04ebd4a2b22f";
|
||||
src = fetchFromGitHub {
|
||||
owner = "IreneKnapp";
|
||||
repo = "oneko";
|
||||
rev = version_name;
|
||||
sha256 = "0vx12v5fm8ar3f1g6jbpmd3b1q652d32nc67ahkf28djbqjgcbnc";
|
||||
};
|
||||
nativeBuildInputs = [ imake gccmakedep ];
|
||||
buildInputs = [ xlibsWrapper ];
|
||||
|
@ -22,9 +24,9 @@ stdenv.mkDerivation rec {
|
|||
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 ];
|
||||
homepage = "https://github.com/IreneKnapp/oneko";
|
||||
license = with licenses; [ publicDomain ];
|
||||
maintainers = with maintainers; [ xaverdh irenes ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue