nixpkgs/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix

31 lines
901 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, qtbase
, qtdeclarative, cmake, texlive, ninja }:
2016-01-12 18:17:46 +00:00
stdenv.mkDerivation rec {
pname = "dwarf-therapist";
2020-02-13 23:27:26 +00:00
version = "41.1.3";
2016-01-12 18:17:46 +00:00
src = fetchFromGitHub {
owner = "Dwarf-Therapist";
2016-01-12 18:17:46 +00:00
repo = "Dwarf-Therapist";
2017-12-30 13:49:16 +00:00
rev = "v${version}";
2020-02-13 23:27:26 +00:00
sha256 = "15f6npbfgsxsr6pm2vxpali8f6nyyk80bcyhy9s77n064q0qg2nj";
2016-01-12 18:17:46 +00:00
};
nativeBuildInputs = [ texlive cmake ninja ];
buildInputs = [ qtbase qtdeclarative ];
2016-01-12 18:17:46 +00:00
2018-06-11 00:21:36 +01:00
installPhase = if stdenv.isDarwin then ''
mkdir -p $out/Applications
cp -r DwarfTherapist.app $out/Applications
'' else null;
2016-11-23 14:49:18 +00:00
meta = with stdenv.lib; {
description = "Tool to manage dwarves in a running game of Dwarf Fortress";
maintainers = with maintainers; [ the-kenny abbradar bendlas numinit jonringer ];
2016-11-23 14:49:18 +00:00
license = licenses.mit;
2018-06-11 00:21:36 +01:00
platforms = platforms.unix;
homepage = "https://github.com/Dwarf-Therapist/Dwarf-Therapist";
2016-01-12 18:17:46 +00:00
};
}