nixpkgs/pkgs/misc/lightspark/default.nix

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

36 lines
931 B
Nix
Raw Normal View History

2021-05-25 05:12:36 +02:00
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, curl, zlib, ffmpeg, glew, pcre
2021-03-14 19:12:53 +01:00
, rtmpdump, cairo, boost, SDL2, SDL2_mixer, libjpeg, pango, xz, nasm
2020-01-18 16:19:56 +01:00
, llvm, glibmm
2019-08-31 12:00:20 +02:00
}:
stdenv.mkDerivation rec {
pname = "lightspark";
2021-07-05 06:24:59 +02:00
version = "0.8.5";
2019-08-31 12:00:20 +02:00
src = fetchFromGitHub {
owner = "lightspark";
repo = "lightspark";
2019-09-09 01:38:31 +02:00
rev = version;
2021-07-05 06:24:59 +02:00
sha256 = "sha256-F+zCwKTPWkp+VWYvYN5+VbBJeQAwspKy7+Uv+ZstowA=";
2019-08-31 12:00:20 +02:00
};
2021-05-25 05:12:36 +02:00
postPatch = ''
2019-08-31 12:00:20 +02:00
sed -i 's/SET(ETCDIR "\/etc")/SET(ETCDIR "etc")/g' CMakeLists.txt
'';
2021-01-17 03:30:45 +01:00
nativeBuildInputs = [ pkg-config cmake ];
2019-08-31 12:00:20 +02:00
buildInputs = [
2021-05-25 05:12:36 +02:00
curl zlib ffmpeg glew pcre rtmpdump cairo boost SDL2 SDL2_mixer libjpeg
2021-03-14 19:12:53 +01:00
pango xz nasm llvm glibmm
2019-08-31 12:00:20 +02:00
];
meta = with lib; {
2019-08-31 12:00:20 +02:00
description = "Open source Flash Player implementation";
homepage = "https://lightspark.github.io/";
2021-05-25 05:12:36 +02:00
license = licenses.lgpl3Plus;
2019-08-31 12:00:20 +02:00
maintainers = with maintainers; [ jchw ];
platforms = platforms.linux;
};
}