nixpkgs-suyu/pkgs/games/dwarf-fortress/themes/phoebus.nix

34 lines
865 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
2015-11-27 04:26:44 +01:00
# On upgrade check https://github.com/fricy/Phoebus/blob/master/manifest.json
# for compatibility information.
2015-11-27 04:26:44 +01:00
stdenv.mkDerivation {
name = "phoebus-theme-20160118";
2015-11-27 04:26:44 +01:00
src = fetchFromGitHub {
owner = "fricy";
repo = "Phoebus";
rev = "2c5777b0f307b1d752a8a484c6a05b67531c84a9";
sha256 = "0a5ixm181wz7crr3rpa2mh0drb371j5hvizqninvdnhah2mypz8v";
2015-11-27 04:26:44 +01:00
};
installPhase = ''
mkdir $out
cp -r data raw $out
'';
2015-11-27 04:26:44 +01:00
passthru.dfVersion = "0.42.05";
2015-11-27 04:26:44 +01:00
preferLocalBuild = true;
2015-11-27 04:26:44 +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
}