2017-07-28 12:08:32 +02:00
|
|
|
{ stdenv, fetchFromGitHub, coreutils, qtbase, qtdeclarative, cmake, texlive, ninja }:
|
2016-01-12 19:17:46 +01:00
|
|
|
|
2016-04-26 14:27:48 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-01-12 19:17:46 +01:00
|
|
|
name = "dwarf-therapist-original-${version}";
|
2018-06-07 00:07:42 +02:00
|
|
|
version = "40.0.0";
|
2016-01-12 19:17:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-12-07 00:53:24 +01:00
|
|
|
owner = "Dwarf-Therapist";
|
2016-01-12 19:17:46 +01:00
|
|
|
repo = "Dwarf-Therapist";
|
2017-12-30 14:49:16 +01:00
|
|
|
rev = "v${version}";
|
2018-06-07 00:07:42 +02:00
|
|
|
sha256 = "0b5y7800nzydn0jcc0vglgi9mzkj8f3qhw16wd872cf5396xnag9";
|
2016-01-12 19:17:46 +01:00
|
|
|
};
|
|
|
|
|
2016-03-03 13:02:21 +01:00
|
|
|
buildInputs = [ qtbase qtdeclarative ];
|
2017-07-28 12:08:32 +02:00
|
|
|
nativeBuildInputs = [ texlive cmake ninja ];
|
2016-01-12 19:17:46 +01:00
|
|
|
|
2016-11-23 15:49:18 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-01-12 19:17:46 +01:00
|
|
|
description = "Tool to manage dwarves in in a running game of Dwarf Fortress";
|
2017-12-07 00:53:24 +01:00
|
|
|
maintainers = with maintainers; [ the-kenny abbradar bendlas ];
|
2016-11-23 15:49:18 +01:00
|
|
|
license = licenses.mit;
|
2018-03-09 14:24:03 +01:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
2017-12-07 00:53:24 +01:00
|
|
|
homepage = https://github.com/Dwarf-Therapist/Dwarf-Therapist;
|
2016-01-12 19:17:46 +01:00
|
|
|
};
|
|
|
|
}
|