nixpkgs/pkgs/misc/lightspark/default.nix

36 lines
934 B
Nix
Raw Normal View History

2021-01-17 02:30:45 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, curl, zlib, ffmpeg_3, glew, pcre
2021-03-14 18:12:53 +00:00
, rtmpdump, cairo, boost, SDL2, SDL2_mixer, libjpeg, pango, xz, nasm
2020-01-18 15:19:56 +00:00
, llvm, glibmm
2019-08-31 10:00:20 +00:00
}:
stdenv.mkDerivation rec {
pname = "lightspark";
2021-02-11 18:48:43 +00:00
version = "0.8.4.1";
2019-08-31 10:00:20 +00:00
src = fetchFromGitHub {
owner = "lightspark";
repo = "lightspark";
2019-09-08 23:38:31 +00:00
rev = version;
2021-02-11 18:48:43 +00:00
sha256 = "sha256-pIiv5wEDLvTHjlYSicXUTTI6pVAsO6FC39Gie9Z/hZ4=";
2019-08-31 10:00:20 +00:00
};
patchPhase = ''
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 = [
curl zlib ffmpeg_3 glew pcre rtmpdump cairo boost SDL2 SDL2_mixer libjpeg
2021-03-14 18:12:53 +00:00
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/";
license = licenses.lgpl3;
maintainers = with maintainers; [ jchw ];
platforms = platforms.linux;
};
}