python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / onscripter-en / default.nix
blobaaa14e6b2bd0fe465e0d24c835bfd79d3b1554ca
1 { lib, stdenv, fetchurl
2 , libpng, libjpeg, libogg, libvorbis, freetype, smpeg
3 , SDL, SDL_image, SDL_mixer, SDL_ttf }:
6 stdenv.mkDerivation {
7   pname = "onscripter-en";
8   version = "20111009";
10   src = fetchurl {
11     # The website is not available now.
12     url = "https://www.dropbox.com/s/ag21owy9poyr2oy/onscripter-en-20111009-src.tar.bz2";
13     sha256 = "sha256-pir3ExhehJ9zNygDN83S4GOs5ugDNMjngxEwklAz9c8=";
14   };
16   buildInputs = [ libpng libjpeg libogg libvorbis freetype smpeg
17                   SDL SDL_image SDL_mixer SDL_ttf
18                 ];
20   configureFlags = [ "--no-werror" ];
22   # Without this libvorbisfile.so is not getting linked properly for some reason.
23   NIX_CFLAGS_LINK = "-lvorbisfile";
25   preBuild = ''
26     sed -i 's/.dll//g' Makefile
27   '';
29   meta = with lib; {
30     broken = stdenv.isDarwin;
31     description = "Japanese visual novel scripting engine";
32     homepage = "http://unclemion.com/onscripter/";
33     license = licenses.gpl2;
34     platforms = platforms.unix;
35     maintainers = with maintainers; [ abbradar ];
36   };