hawkthorne: Initial commit, license issue still unresolved
This commit is contained in:
committed by
Mateusz Kowalczyk
parent
fc83dfbc49
commit
3da42c811f
@@ -0,0 +1,38 @@
|
||||
{ fetchgit, stdenv, love, curl, zip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.9.1";
|
||||
name = "hawkthorne-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/hawkthorne/hawkthorne-journey.git";
|
||||
rev = "e48b5eef0058f63bb8ee746bc00b47b3e03f0854";
|
||||
sha256 = "0rvcpv8fsi450xs2cglv4w6m5iqbhsr2n09pcvhh0krhg7xay538";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
love curl zip
|
||||
];
|
||||
|
||||
patches = [
|
||||
./makefile.patch
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "Journey to the Center of Hawkthorne - A fan-made retro-style game based on the show Community";
|
||||
longDescription = ''
|
||||
Journey to the Center of Hawkthorne is an open source game written in Love2D.
|
||||
It's based on the show Community, starring Jim Rash and Joel McHale as
|
||||
the primary will-they-or-won't-they relationship.
|
||||
|
||||
This game has been entirely developed by fans of the show, who were inspired
|
||||
to bring to life the video game used to determine the winner of Pierce
|
||||
Hawthorne's inheritance.
|
||||
'';
|
||||
homepage = "http://www.reddit.com/r/hawkthorne";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = with stdenv.lib.maintainers; [ campadrenalin ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user