evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / on / onscripter-en / package.nix
blob64c7cd931fa2f43d123d1e8b54d943c8f6a64982
2   lib,
3   SDL,
4   SDL_image,
5   SDL_mixer,
6   SDL_ttf,
7   fetchFromGitHub,
8   freetype,
9   libjpeg,
10   libogg,
11   libpng,
12   libvorbis,
13   pkg-config,
14   smpeg,
15   stdenv,
19 stdenv.mkDerivation (finalAttrs: {
20   pname = "onscripter-en";
21   version = "20110930";
23   # The website is not available now. Let's use a Museoa backup
24   src = fetchFromGitHub {
25     owner = "museoa";
26     repo = "onscripter-en";
27     rev = finalAttrs.version;
28     hash = "sha256-Lc5ZlH2C4ER02NmQ6icfiqpzVQdVUnOmdywGjjjSYSg=";
29   };
31   nativeBuildInputs = [
32     SDL
33     pkg-config
34     smpeg
35   ];
37   buildInputs = [
38     SDL
39     SDL_image
40     SDL_mixer
41     SDL_ttf
42     freetype
43     libjpeg
44     libogg
45     libpng
46     libvorbis
47     smpeg
48   ];
50   configureFlags = [ "--no-werror" ];
52   strictDeps = true;
54   preBuild = ''
55     sed -i 's/.dll//g' Makefile
56   '';
58   meta = {
59     homepage = "http://github.com/museoa/onscripter-en";
60     description = "Japanese visual novel scripting engine";
61     license = lib.licenses.gpl2Plus;
62     mainProgram = "onscripter-en";
63     maintainers = with lib.maintainers; [ AndersonTorres ];
64     platforms = lib.platforms.unix;
65     broken = stdenv.hostPlatform.isDarwin;
66   };