2020-03-02 01:58:28 +03:00
|
|
|
{ stdenv, fetchurl, desktop-file-utils
|
2017-05-11 09:52:43 +03:00
|
|
|
, gtk3, libX11
|
|
|
|
, makeWrapper, pkgconfig, perl, autoreconfHook, wrapGAppsHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "sgt-puzzles-r${version}";
|
2019-12-09 01:47:29 +03:00
|
|
|
version = "20191114.1c0c49d";
|
2017-05-11 09:52:43 +03:00
|
|
|
|
2016-04-20 12:33:35 +03:00
|
|
|
src = fetchurl {
|
2020-03-02 01:58:28 +03:00
|
|
|
url = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${version}.tar.gz";
|
|
|
|
sha256 = "01fi2f3w71bfbgcfr6gxdp5a9cxh4dshbflv83q2j5rxxs2ll870";
|
2015-07-05 11:57:38 +03:00
|
|
|
};
|
2017-05-11 09:52:43 +03:00
|
|
|
|
2020-03-02 01:58:28 +03:00
|
|
|
nativeBuildInputs = [ autoreconfHook desktop-file-utils makeWrapper
|
|
|
|
pkgconfig perl wrapGAppsHook ];
|
2017-05-11 09:52:43 +03:00
|
|
|
|
|
|
|
buildInputs = [ gtk3 libX11 ];
|
|
|
|
|
2015-07-05 11:57:38 +03:00
|
|
|
makeFlags = ["prefix=$(out)" "gamesdir=$(out)/bin"];
|
2020-03-02 01:58:28 +03:00
|
|
|
|
2015-07-05 11:57:38 +03:00
|
|
|
preInstall = ''
|
2020-03-02 01:58:28 +03:00
|
|
|
mkdir -p "$out"/{bin,share/doc/sgtpuzzles,share/icons/hicolor/48x48/apps}
|
2015-07-13 00:55:24 +03:00
|
|
|
cp gamedesc.txt LICENCE README "$out/share/doc/sgtpuzzles"
|
2015-07-05 11:57:38 +03:00
|
|
|
'';
|
2016-05-20 12:21:38 +03:00
|
|
|
# SGT Puzzles use generic names like net, map, etc.
|
|
|
|
# Create symlinks with sgt-puzzle- prefix for possibility of
|
|
|
|
# disambiguation
|
|
|
|
postInstall = ''
|
|
|
|
(
|
2020-03-02 01:58:28 +03:00
|
|
|
currentSrc=$PWD
|
2016-05-20 12:21:38 +03:00
|
|
|
cd "$out"/bin ;
|
2020-03-02 01:58:28 +03:00
|
|
|
for i in *; do
|
|
|
|
ln -s "$i" "sgt-puzzle-$i"
|
|
|
|
|
|
|
|
install -Dm644 $currentSrc/icons/$i-48d24.png $out/share/icons/hicolor/48x48/apps/
|
|
|
|
|
|
|
|
# Generate/validate/install .desktop files.
|
|
|
|
echo "[Desktop Entry]" > $i.desktop
|
|
|
|
desktop-file-install --dir $out/share/applications \
|
|
|
|
--set-key Type --set-value Application \
|
|
|
|
--set-key Exec --set-value $i \
|
|
|
|
--set-key Name --set-value $i \
|
|
|
|
--set-key Comment --set-value "${meta.description}" \
|
|
|
|
--set-key Categories --set-value LogicGame \
|
|
|
|
--set-key Icon --set-value $i-48d24 $i.desktop
|
|
|
|
rm $i.desktop
|
|
|
|
done
|
2016-05-20 12:21:38 +03:00
|
|
|
)
|
|
|
|
'';
|
2020-03-02 01:58:28 +03:00
|
|
|
|
2015-07-05 11:57:38 +03:00
|
|
|
preConfigure = ''
|
2010-01-15 14:46:12 +03:00
|
|
|
perl mkfiles.pl
|
2010-02-18 16:40:10 +03:00
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lX11"
|
2013-03-21 17:35:18 +04:00
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -Wno-error"
|
2015-07-05 11:57:38 +03:00
|
|
|
cp Makefile.gtk Makefile
|
2010-02-18 16:40:10 +03:00
|
|
|
'';
|
2017-05-11 09:52:43 +03:00
|
|
|
meta = with stdenv.lib; {
|
2008-12-15 14:55:53 +03:00
|
|
|
description = "Simon Tatham's portable puzzle collection";
|
2017-05-11 09:52:43 +03:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
2019-12-09 01:47:29 +03:00
|
|
|
homepage = https://www.chiark.greenend.org.uk/~sgtatham/puzzles/;
|
2008-12-15 14:55:53 +03:00
|
|
|
};
|
|
|
|
}
|