nixpkgs/pkgs/misc/lightspark/default.nix

36 lines
931 B
Nix
Raw Normal View History

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