2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, qtbase
|
2018-07-08 12:44:29 -07:00
|
|
|
, qtdeclarative, cmake, texlive, ninja }:
|
2016-01-12 10:17:46 -08:00
|
|
|
|
2016-04-26 05:27:48 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "dwarf-therapist";
|
2020-03-12 11:38:37 -07:00
|
|
|
version = "41.1.5";
|
2016-01-12 10:17:46 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-12-06 15:53:24 -08:00
|
|
|
owner = "Dwarf-Therapist";
|
2016-01-12 10:17:46 -08:00
|
|
|
repo = "Dwarf-Therapist";
|
2017-12-30 05:49:16 -08:00
|
|
|
rev = "v${version}";
|
2020-03-12 11:38:37 -07:00
|
|
|
sha256 = "0w1mwwf49vdmvmdfvlkn4m0hzvlj111rpl8hv4rw6v8nv6yfb2y4";
|
2016-01-12 10:17:46 -08:00
|
|
|
};
|
|
|
|
|
2017-07-28 03:08:32 -07:00
|
|
|
nativeBuildInputs = [ texlive cmake ninja ];
|
2020-01-30 11:13:36 -08:00
|
|
|
buildInputs = [ qtbase qtdeclarative ];
|
2016-01-12 10:17:46 -08:00
|
|
|
|
2018-06-10 16:21:36 -07:00
|
|
|
installPhase = if stdenv.isDarwin then ''
|
|
|
|
mkdir -p $out/Applications
|
|
|
|
cp -r DwarfTherapist.app $out/Applications
|
|
|
|
'' else null;
|
|
|
|
|
2021-01-12 03:50:23 -08:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-07-01 13:28:59 -07:00
|
|
|
description = "Tool to manage dwarves in a running game of Dwarf Fortress";
|
2020-05-09 02:25:07 -07:00
|
|
|
maintainers = with maintainers; [ abbradar bendlas numinit jonringer ];
|
2016-11-23 06:49:18 -08:00
|
|
|
license = licenses.mit;
|
2018-06-10 16:21:36 -07:00
|
|
|
platforms = platforms.unix;
|
2020-01-30 11:13:36 -08:00
|
|
|
homepage = "https://github.com/Dwarf-Therapist/Dwarf-Therapist";
|
2016-01-12 10:17:46 -08:00
|
|
|
};
|
|
|
|
}
|