nixpkgs/pkgs/games/adom/default.nix

60 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, patchelf, zlib, libmad, libpng12, libcaca, libGLU, libGL, alsa-lib, libpulseaudio
, xorg }:
2014-08-24 16:52:34 +00:00
2014-07-15 15:21:18 +00:00
let
inherit (xorg) libXext libX11;
2014-07-15 15:21:18 +00:00
2021-01-15 04:31:39 +00:00
lpath = "${stdenv.cc.cc.lib}/lib64:" + lib.makeLibraryPath [
zlib libmad libpng12 libcaca libXext libX11 libGLU libGL alsa-lib libpulseaudio];
2014-07-15 15:21:18 +00:00
in
2014-07-15 15:21:18 +00:00
stdenv.mkDerivation rec {
2015-07-13 19:22:55 +00:00
name = "adom-${version}-noteye";
version = "1.2.0_pre23";
2014-07-15 15:21:18 +00:00
2015-07-13 19:22:55 +00:00
src = fetchurl {
url = "http://ancardia.uk.to/download/adom_noteye_linux_ubuntu_64_${version}.tar.gz";
sha256 = "0sbn0csaqb9cqi0z5fdwvnymkf84g64csg0s9mm6fzh0sm2mi0hz";
2014-07-15 15:21:18 +00:00
};
buildCommand = ''
. $stdenv/setup
unpackPhase
mkdir -pv $out
cp -r -t $out adom/*
chmod u+w $out/lib
for l in $out/lib/*so* ; do
chmod u+w $l
${patchelf}/bin/patchelf \
--set-rpath "$out/lib:${lpath}" \
$l
done
${patchelf}/bin/patchelf \
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
2014-07-15 15:21:18 +00:00
--set-rpath "$out/lib:${lpath}" \
$out/adom
mkdir $out/bin
cat >$out/bin/adom <<EOF
#! ${stdenv.shell}
2015-07-19 18:59:35 +00:00
(cd $out; exec $out/adom ; )
2014-07-15 15:21:18 +00:00
EOF
chmod +x $out/bin/adom
'';
meta = with lib; {
description = "A rogue-like game with nice graphical interface";
homepage = "http://adom.de/";
license = licenses.unfreeRedistributable;
maintainers = [maintainers.smironov];
2014-07-15 15:21:18 +00:00
# Please, notify me (smironov) if you need the x86 version
platforms = ["x86_64-linux"];
};
}