nixpkgs/pkgs/games/rocksndiamonds/default.nix
Ryan Mulligan 595e412e04 rocksndiamonds: 4.0.1.1 -> 4.0.1.3
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/9xclaqwjhfkghjb7yhkzl0w3gc5l83zg-rocksndiamonds-4.0.1.3/bin/rocksndiamonds -h` got 0 exit code
- ran `/nix/store/9xclaqwjhfkghjb7yhkzl0w3gc5l83zg-rocksndiamonds-4.0.1.3/bin/rocksndiamonds --help` got 0 exit code
- ran `/nix/store/9xclaqwjhfkghjb7yhkzl0w3gc5l83zg-rocksndiamonds-4.0.1.3/bin/rocksndiamonds -V` and found version 4.0.1.3
- ran `/nix/store/9xclaqwjhfkghjb7yhkzl0w3gc5l83zg-rocksndiamonds-4.0.1.3/bin/rocksndiamonds --version` and found version 4.0.1.3
- found 4.0.1.3 with grep in /nix/store/9xclaqwjhfkghjb7yhkzl0w3gc5l83zg-rocksndiamonds-4.0.1.3
2018-03-15 04:56:44 -07:00

50 lines
1.4 KiB
Nix

{ stdenv, fetchurl, makeDesktopItem, SDL2, SDL2_image, SDL2_mixer, SDL2_net }:
stdenv.mkDerivation rec {
name = "${project}-${version}";
project = "rocksndiamonds";
version = "4.0.1.3";
src = fetchurl {
url = "https://www.artsoft.org/RELEASES/unix/${project}/${name}.tar.gz";
sha256 = "0y8w96hav7k5qwpm6rvzn3g4czfpsc58dix3x98anqii9l6vwrdd";
};
desktopItem = makeDesktopItem {
name = "rocksndiamonds";
exec = "rocksndiamonds";
icon = "rocksndiamonds";
comment = meta.description;
desktopName = "Rocks'n'Diamonds";
genericName = "Tile-based puzzle";
categories = "Game;LogicGame;";
};
buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_net ];
preBuild = ''
dataDir="$out/share/rocksndiamonds"
makeFlags+="RO_GAME_DIR=$dataDir"
'';
installPhase = ''
appDir=$out/share/applications
iconDir=$out/share/icons/hicolor/32x32/apps
mkdir -p $out/bin $appDir $iconDir $dataDir
cp rocksndiamonds $out/bin/
ln -s ${desktopItem}/share/applications/* $appDir/
ln -s $dataDir/graphics/gfx_classic/RocksIcon32x32.png $iconDir/rocksndiamonds.png
cp -r docs graphics levels music sounds $dataDir
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Scrolling tile-based arcade style puzzle game";
homepage = https://www.artsoft.org/rocksndiamonds/;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ orivej ];
};
}