summary refs log blame commit diff
path: root/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix
blob: 5e92bbb285b827532afe4e0cc98be28250870a6e (plain) (tree)
1
2
3
4
5
6
7
8
9

                                            
 
                         
                                      
                     

                         
                              
                             
                        
                                                                    

    
                                         
                                              
 




                                              
                           

                                                                               
                           
                               
                                                                  

    
{ stdenv, fetchFromGitHub, coreutils, qtbase
, qtdeclarative, cmake, texlive, ninja }:

stdenv.mkDerivation rec {
  name = "dwarf-therapist-${version}";
  version = "40.1.0";

  src = fetchFromGitHub {
    owner = "Dwarf-Therapist";
    repo = "Dwarf-Therapist";
    rev = "v${version}";
    sha256 = "1aklwic5npgkp8rkrvz2q9idkipsm1h26mgd8q03135nzl1ld9q3";
  };

  buildInputs = [ qtbase qtdeclarative ];
  nativeBuildInputs = [ texlive cmake ninja ];

  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; [ the-kenny abbradar bendlas numinit ];
    license = licenses.mit;
    platforms = platforms.unix;
    homepage = https://github.com/Dwarf-Therapist/Dwarf-Therapist;
  };
}