nixpkgs/pkgs/misc/lightspark/default.nix

38 lines
971 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, cmake, curl, zlib, ffmpeg_3, glew, pcre
2020-10-25 19:38:25 +00:00
, rtmpdump, cairo, boost, SDL2, SDL2_mixer, libjpeg, pango, lzma, nasm
2020-01-18 15:19:56 +00:00
, llvm, glibmm
2019-08-31 10:00:20 +00:00
}:
stdenv.mkDerivation rec {
pname = "lightspark";
2020-01-18 15:19:56 +00:00
version = "0.8.2";
2019-08-31 10:00:20 +00:00
src = fetchFromGitHub {
owner = "lightspark";
repo = "lightspark";
2019-09-08 23:38:31 +00:00
rev = version;
2020-01-18 15:19:56 +00:00
sha256 = "04wn6d6gmpf848x0yghw26m9syv0hm6q5dwqiw3fxhs155jjqfgv";
2019-08-31 10:00:20 +00:00
};
patchPhase = ''
sed -i 's/SET(ETCDIR "\/etc")/SET(ETCDIR "etc")/g' CMakeLists.txt
'';
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [
curl zlib ffmpeg_3 glew pcre rtmpdump cairo boost SDL2 SDL2_mixer libjpeg
2020-10-25 19:38:25 +00:00
pango lzma nasm llvm glibmm
2019-08-31 10:00:20 +00:00
];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Open source Flash Player implementation";
homepage = "https://lightspark.github.io/";
license = licenses.lgpl3;
maintainers = with maintainers; [ jchw ];
platforms = platforms.linux;
};
}