mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
887295fd2d
@the-kenny did a good job in the past and is set as maintainer in many package, however since 2017-2018 he stopped contributing. To create less confusion in pull requests when people try to request his feedback, I removed him as maintainer from all packages.
31 lines
891 B
Nix
31 lines
891 B
Nix
{ stdenv, fetchFromGitHub, qtbase
|
|
, qtdeclarative, cmake, texlive, ninja }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dwarf-therapist";
|
|
version = "41.1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Dwarf-Therapist";
|
|
repo = "Dwarf-Therapist";
|
|
rev = "v${version}";
|
|
sha256 = "0w1mwwf49vdmvmdfvlkn4m0hzvlj111rpl8hv4rw6v8nv6yfb2y4";
|
|
};
|
|
|
|
nativeBuildInputs = [ texlive cmake ninja ];
|
|
buildInputs = [ qtbase qtdeclarative ];
|
|
|
|
installPhase = if stdenv.isDarwin then ''
|
|
mkdir -p $out/Applications
|
|
cp -r DwarfTherapist.app $out/Applications
|
|
'' else null;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tool to manage dwarves in a running game of Dwarf Fortress";
|
|
maintainers = with maintainers; [ abbradar bendlas numinit jonringer ];
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
homepage = "https://github.com/Dwarf-Therapist/Dwarf-Therapist";
|
|
};
|
|
}
|