oneko: 1.2.sakura.5 -> 1.2.hanami.6; new upstream; add myself as maintainer
This commit is contained in:
parent
b4778d1cac
commit
d5a782c1e0
1 changed files with 11 additions and 9 deletions
|
@ -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