mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
pentobi: init at 17.3
This commit is contained in:
parent
053a155def
commit
aa2241f857
38
pkgs/games/pentobi/default.nix
Normal file
38
pkgs/games/pentobi/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ stdenv, appstream, fetchurl, cmake, gettext, libxslt, librsvg, itstool
|
||||||
|
, qtbase, qtquickcontrols2, qtsvg, qttools, qtwebview, docbook_xsl
|
||||||
|
, wrapQtAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "17.3";
|
||||||
|
pname = "pentobi";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/pentobi/${pname}-${version}.tar.xz";
|
||||||
|
sha256 = "00c495i4vrji9hs7v8xr9gm8yqs97bfk2wzsayhps11hmbqzllx9";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.genesis ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -23248,6 +23248,8 @@ in
|
|||||||
|
|
||||||
pacvim = callPackage ../games/pacvim { };
|
pacvim = callPackage ../games/pacvim { };
|
||||||
|
|
||||||
|
pentobi = libsForQt5.callPackage ../games/pentobi { };
|
||||||
|
|
||||||
performous = callPackage ../games/performous {
|
performous = callPackage ../games/performous {
|
||||||
boost = boost166;
|
boost = boost166;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user