587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
48 lines
1 KiB
Nix
48 lines
1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, qtbase
|
|
, qtdeclarative
|
|
, cmake
|
|
, texlive
|
|
, ninja
|
|
, version ? "42.1.5"
|
|
, hash ? "sha256-aUakfUjnIZWNDhCkG3A6u7BaaCG8kPMV/Fu2S73CoDg="
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dwarf-therapist";
|
|
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Dwarf-Therapist";
|
|
repo = "Dwarf-Therapist";
|
|
rev = "v${version}";
|
|
inherit hash;
|
|
};
|
|
|
|
nativeBuildInputs = [ texlive cmake ninja ];
|
|
buildInputs = [ qtbase qtdeclarative ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
cmakeFlags = [ "-GNinja" ];
|
|
|
|
installPhase =
|
|
if stdenv.isDarwin then ''
|
|
mkdir -p $out/Applications
|
|
cp -r DwarfTherapist.app $out/Applications
|
|
'' else null;
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = with lib; {
|
|
mainProgram = "dwarftherapist";
|
|
description = "Tool to manage dwarves in a running game of Dwarf Fortress";
|
|
maintainers = with maintainers; [ abbradar bendlas numinit jonringer ];
|
|
license = licenses.mit;
|
|
platforms = platforms.x86;
|
|
homepage = "https://github.com/Dwarf-Therapist/Dwarf-Therapist";
|
|
};
|
|
}
|