36 lines
912 B
Nix
36 lines
912 B
Nix
{ stdenvNoCC, fetchurl, unzip }:
|
|
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
name = "twbt-${version}";
|
|
version = "6.46";
|
|
dfVersion = "0.44.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mifki/df-twbt/releases/download/v${version}/twbt-${version}-linux.zip";
|
|
sha256 = "1a4k26z5n547k5j3ij2kx834963rc8vwgwcmbmzmhi893bryb1k6";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
outputs = [ "lib" "art" "out" ];
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $lib/hack/{plugins,lua} $art/data/art
|
|
cp -a */twbt.plug.so $lib/hack/plugins/
|
|
cp -a *.lua $lib/hack/lua/
|
|
cp -a *.png $art/data/art/
|
|
'';
|
|
|
|
|
|
meta = with stdenvNoCC.lib; {
|
|
description = "A plugin for Dwarf Fortress / DFHack that improves various aspects the game interface.";
|
|
maintainers = with maintainers; [ Baughn ];
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
homepage = https://github.com/mifki/df-twbt;
|
|
};
|
|
}
|