nixpkgs/pkgs/misc/lightspark/default.nix

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

35 lines
905 B
Nix
Raw Normal View History

2021-05-25 03:12:36 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, curl, zlib, ffmpeg, glew, pcre
2023-05-28 14:04:18 +00:00
, rtmpdump, cairo, boost, SDL2, libjpeg, pango, xz, nasm, llvm, glibmm
2019-08-31 10:00:20 +00:00
}:
stdenv.mkDerivation rec {
pname = "lightspark";
2023-05-28 14:04:18 +00:00
version = "0.8.7";
2019-08-31 10:00:20 +00:00
src = fetchFromGitHub {
owner = "lightspark";
repo = "lightspark";
2019-09-08 23:38:31 +00:00
rev = version;
2023-05-28 14:04:18 +00:00
hash = "sha256-qX/ft9slWTbvuSyi2jB6YC7D7QTtCybL/dTo1dJp3pQ=";
2019-08-31 10:00:20 +00:00
};
2021-05-25 03:12:36 +00:00
postPatch = ''
2019-08-31 10:00:20 +00:00
sed -i 's/SET(ETCDIR "\/etc")/SET(ETCDIR "etc")/g' CMakeLists.txt
'';
2021-01-17 02:30:45 +00:00
nativeBuildInputs = [ pkg-config cmake ];
2019-08-31 10:00:20 +00:00
buildInputs = [
2023-05-28 14:04:18 +00:00
curl zlib ffmpeg glew pcre rtmpdump cairo boost SDL2 libjpeg pango xz nasm
llvm glibmm
2019-08-31 10:00:20 +00:00
];
meta = with lib; {
2019-08-31 10:00:20 +00:00
description = "Open source Flash Player implementation";
homepage = "https://lightspark.github.io/";
2021-05-25 03:12:36 +00:00
license = licenses.lgpl3Plus;
2019-08-31 10:00:20 +00:00
maintainers = with maintainers; [ jchw ];
platforms = platforms.linux;
};
}