2021-01-15 04:31:39 +00:00
|
|
|
{ fetchgit, lib, stdenv, love, curl, zip }:
|
2014-08-31 07:41:46 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2014-10-26 21:19:15 +00:00
|
|
|
version = "0.12.1";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "hawkthorne";
|
2014-08-31 07:41:46 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/hawkthorne/hawkthorne-journey.git";
|
2014-10-26 21:19:15 +00:00
|
|
|
rev = "610b9b3907b2a1b21da2ae926e4c7c4c9e19959b";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "013smhdf9sh91153fpk2bwhhnpg6pn7kfrpw77jmf0v48i3q44h2";
|
2014-08-31 07:41:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.reddit.com/r/hawkthorne";
|
2021-01-15 04:31:39 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ campadrenalin ];
|
2017-03-30 00:20:20 +01:00
|
|
|
broken = true;
|
2014-08-31 07:41:46 +01:00
|
|
|
};
|
|
|
|
}
|