nixpkgs/pkgs/games/onscripter-en/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl
2014-10-23 00:31:49 +00:00
, libpng, libjpeg, libogg, libvorbis, freetype, smpeg
, SDL, SDL_image, SDL_mixer, SDL_ttf }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2021-08-12 20:28:38 +00:00
pname = "onscripter-en";
2022-08-01 06:35:39 +00:00
version = "20111009";
2014-10-23 00:31:49 +00:00
src = fetchurl {
2019-06-03 15:23:43 +00:00
# The website is not available now.
2022-08-01 06:35:39 +00:00
url = "https://www.dropbox.com/s/ag21owy9poyr2oy/onscripter-en-20111009-src.tar.bz2";
sha256 = "sha256-pir3ExhehJ9zNygDN83S4GOs5ugDNMjngxEwklAz9c8=";
2014-10-23 00:31:49 +00:00
};
buildInputs = [ libpng libjpeg libogg libvorbis freetype smpeg
SDL SDL_image SDL_mixer SDL_ttf
];
configureFlags = [ "--no-werror" ];
# Without this libvorbisfile.so is not getting linked properly for some reason.
2019-10-30 11:34:47 +00:00
NIX_CFLAGS_LINK = "-lvorbisfile";
2014-10-23 00:31:49 +00:00
preBuild = ''
sed -i 's/.dll//g' Makefile
'';
meta = with lib; {
broken = stdenv.isDarwin;
2014-10-23 00:31:49 +00:00
description = "Japanese visual novel scripting engine";
mainProgram = "onscripter-en";
homepage = "http://unclemion.com/onscripter/";
2014-10-23 00:31:49 +00:00
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar ];
2014-10-23 00:31:49 +00:00
};
}