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

30 lines
918 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, coreutils, qtbase, qtdeclarative, cmake, texlive, ninja }:
2016-01-12 10:17:46 -08:00
stdenv.mkDerivation rec {
2016-01-12 10:17:46 -08:00
name = "dwarf-therapist-original-${version}";
version = "40.1.0";
2016-01-12 10:17:46 -08:00
src = fetchFromGitHub {
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}";
sha256 = "1aklwic5npgkp8rkrvz2q9idkipsm1h26mgd8q03135nzl1ld9q3";
2016-01-12 10:17:46 -08:00
};
buildInputs = [ qtbase qtdeclarative ];
nativeBuildInputs = [ texlive cmake ninja ];
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;
2016-11-23 06:49:18 -08: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 ];
2016-11-23 06:49:18 -08:00
license = licenses.mit;
2018-06-10 16:21:36 -07:00
platforms = platforms.unix;
homepage = https://github.com/Dwarf-Therapist/Dwarf-Therapist;
2016-01-12 10:17:46 -08:00
};
}