2016-01-19 22:43:52 +01:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2015-11-27 04:26:44 +01:00
|
|
|
|
2016-02-10 14:53:59 +01:00
|
|
|
# On upgrade check https://github.com/DFgraphics/Phoebus/blob/master/manifest.json
|
2016-01-19 22:43:52 +01:00
|
|
|
# for compatibility information.
|
2015-11-27 04:26:44 +01:00
|
|
|
|
2016-04-30 02:03:09 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "phoebus-theme-${version}";
|
2016-11-23 16:05:38 +01:00
|
|
|
version = "43.05c";
|
2015-11-27 04:26:44 +01:00
|
|
|
|
2016-01-19 22:43:52 +01:00
|
|
|
src = fetchFromGitHub {
|
2016-02-10 14:53:59 +01:00
|
|
|
owner = "DFgraphics";
|
2016-01-19 22:43:52 +01:00
|
|
|
repo = "Phoebus";
|
2016-04-30 02:03:09 +02:00
|
|
|
rev = version;
|
2016-11-23 16:05:38 +01:00
|
|
|
sha256 = "0wiz9rd5ypibgh8854h5n2xwksfxylaziyjpbp3p1rkm3r7kr4fd";
|
2015-11-27 04:26:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
2016-01-19 22:43:52 +01:00
|
|
|
mkdir $out
|
|
|
|
cp -r data raw $out
|
|
|
|
'';
|
2015-11-27 04:26:44 +01:00
|
|
|
|
2016-08-13 02:12:55 +02:00
|
|
|
passthru.dfVersion = "0.43.05";
|
2015-11-27 04:26:44 +01:00
|
|
|
|
2016-01-19 22:43:52 +01:00
|
|
|
preferLocalBuild = true;
|
2015-11-27 04:26:44 +01:00
|
|
|
|
2016-01-19 22:43:52 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Phoebus graphics set for Dwarf Fortress";
|
|
|
|
homepage = "http://www.bay12forums.com/smf/index.php?topic=137096.0";
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ a1russell abbradar ];
|
|
|
|
# https://github.com/fricy/Phoebus/issues/5
|
|
|
|
license = licenses.free;
|
|
|
|
};
|
2015-11-27 04:26:44 +01:00
|
|
|
}
|