nixpkgs/pkgs/games/pentobi/default.nix

39 lines
1.3 KiB
Nix
Raw Normal View History

2019-12-15 00:35:19 +00:00
{ stdenv, appstream, fetchurl, cmake, gettext, libxslt, librsvg, itstool
, qtbase, qtquickcontrols2, qtsvg, qttools, qtwebview, docbook_xsl
, wrapQtAppsHook
}:
with stdenv.lib;
stdenv.mkDerivation rec {
2020-05-23 00:02:02 +00:00
version = "18.0";
2019-12-15 00:35:19 +00:00
pname = "pentobi";
src = fetchurl {
url = "mirror://sourceforge/pentobi/${pname}-${version}.tar.xz";
2020-05-23 00:02:02 +00:00
sha256 = "0dlvshywxijl0hrkl66szamcr77arh118f44ngr1ail8mg1fx1fy";
2019-12-15 00:35:19 +00:00
};
nativeBuildInputs = [ cmake docbook_xsl wrapQtAppsHook ];
buildInputs = [ appstream qtbase qtsvg qtquickcontrols2 qttools qtwebview itstool librsvg ];
patchPhase = ''
substituteInPlace pentobi_thumbnailer/CMakeLists.txt --replace "/manpages" "/share/xml/docbook-xsl/manpages/"
substituteInPlace pentobi/unix/CMakeLists.txt --replace "/manpages" "/share/xml/docbook-xsl/manpages/"
substituteInPlace pentobi/docbook/CMakeLists.txt --replace "/html" "/share/xml/docbook-xsl/html"
'';
cmakeFlags = [
"-DCMAKE_VERBOSE_MAKEFILE=1"
"-DDOCBOOKXSL_DIR=${docbook_xsl}"
"-DMETAINFO_ITS=${appstream}/share/gettext/its/metainfo.its"
];
meta = {
description = "A computer opponent for the board game Blokus";
homepage = "https://pentobi.sourceforge.io";
2019-12-15 00:35:19 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.genesis ];
platforms = platforms.linux;
};
}