python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / misc / lightspark / default.nix
blobfb598c3577195150c88ce0ceaaefea9ef903cfb7
1 { lib, stdenv, fetchFromGitHub, pkg-config, cmake, curl, zlib, ffmpeg, glew, pcre
2 , rtmpdump, cairo, boost, SDL2, SDL2_mixer, libjpeg, pango, xz, nasm
3 , llvm, glibmm
4 }:
6 stdenv.mkDerivation rec {
7   pname = "lightspark";
8   version = "0.8.6.1";
10   src = fetchFromGitHub {
11     owner = "lightspark";
12     repo = "lightspark";
13     rev = version;
14     sha256 = "sha256-/w0cqPIeQC1Oz1teSjMpeiQEI6bIpnyOOu0GoGyi6Kg=";
15   };
17   postPatch = ''
18     sed -i 's/SET(ETCDIR "\/etc")/SET(ETCDIR "etc")/g' CMakeLists.txt
19   '';
21   nativeBuildInputs = [ pkg-config cmake ];
23   buildInputs = [
24     curl zlib ffmpeg glew pcre rtmpdump cairo boost SDL2 SDL2_mixer libjpeg
25     pango xz nasm llvm glibmm
26   ];
28   meta = with lib; {
29     description = "Open source Flash Player implementation";
30     homepage = "https://lightspark.github.io/";
31     license = licenses.lgpl3Plus;
32     maintainers = with maintainers; [ jchw ];
33     platforms = platforms.linux;
34   };