summary refs log tree commit diff
path: root/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix
blob: 07714168e0e830b6cf085b4ac106ff4aac1dc338 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ stdenv, fetchFromGitHub, coreutils, qt4, texlive }:

let
  version = "36.0.0";
in
stdenv.mkDerivation {
  name = "dwarf-therapist-original-${version}";

  src = fetchFromGitHub {
    owner = "splintermind";
    repo = "Dwarf-Therapist";
    rev = "v${version}";
    sha256 = "08xjawb25sibkkfqwd4mlq73dgmgc6lxbbd673rx7yhrsjh4z4h3";
  };

  outputs = [ "out" "layouts" ];
  buildInputs = [ qt4 ];
  nativeBuildInputs = [ texlive ];

  enableParallelBuilding = false;

  configurePhase = ''
    qmake PREFIX=$out
  '';

  # Move layout files so they cannot be found by Therapist
  postInstall = ''
    mkdir -p $layouts
    mv $out/share/dwarftherapist/memory_layouts/* $layouts
    rmdir $out/share/dwarftherapist/memory_layouts
  '';

  meta = {
    description = "Tool to manage dwarves in in a running game of Dwarf Fortress";
    maintainers = with stdenv.lib.maintainers; [ the-kenny abbradar ];
    license = stdenv.lib.licenses.mit;
    platforms = stdenv.lib.platforms.linux;
    homepage = https://code.google.com/r/splintermind-attributes/;
  };
}