ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / games / adom / default.nix
blobbef9d1b42d32b0167e5a326ae3fb85ac6ae80d6d
1 { lib, stdenv, fetchurl, patchelf, zlib, libmad, libpng12, libcaca, libGLU, libGL, alsa-lib, libpulseaudio
2 , xorg }:
4 let
6   inherit (xorg) libXext libX11;
8   lpath = "${stdenv.cc.cc.lib}/lib64:" + lib.makeLibraryPath [
9       zlib libmad libpng12 libcaca libXext libX11 libGLU libGL alsa-lib libpulseaudio];
12 stdenv.mkDerivation rec {
13   name = "adom-${version}-noteye";
14   version = "1.2.0_pre23";
16   src = fetchurl {
17     url = "http://ancardia.uk.to/download/adom_noteye_linux_ubuntu_64_${version}.tar.gz";
18     sha256 = "0sbn0csaqb9cqi0z5fdwvnymkf84g64csg0s9mm6fzh0sm2mi0hz";
19   };
21   buildCommand = ''
22     . $stdenv/setup
24     unpackPhase
26     mkdir -pv $out
27     cp -r -t $out adom/*
29     chmod u+w $out/lib
30     for l in $out/lib/*so* ; do
31       chmod u+w $l
32       ${patchelf}/bin/patchelf \
33         --set-rpath "$out/lib:${lpath}" \
34         $l
35     done
37     ${patchelf}/bin/patchelf \
38       --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
39       --set-rpath "$out/lib:${lpath}" \
40       $out/adom
42     mkdir $out/bin
43     cat >$out/bin/adom <<EOF
44     #! ${stdenv.shell}
45     (cd $out; exec $out/adom ; )
46     EOF
47     chmod +x $out/bin/adom
48   '';
50   meta = with lib; {
51     description = "A rogue-like game with nice graphical interface";
52     homepage = "http://adom.de/";
53     license = licenses.unfreeRedistributable;
54     maintainers = [maintainers.smironov];
56     # Please, notify me (smironov) if you need the x86 version
57     platforms = ["x86_64-linux"];
58     broken = true; # at 2022-09-30, failed download.
59   };