ffmpegthumbnailer: enable generation of thumbnailer file, misc cleanups
Passing "-DENABLE_THUMBNAILER=ON" to CMake causes it to install "ffmpegthumbnailer.thumbnailer" into /share/thumbnailers, making it actually usable with desktop environments. Cleanups: - remove trailing whitespace - change pkgconfig -> pkg-config - change license from gpl2 to gpl2Plus
This commit is contained in:
parent
5ea718cb2d
commit
6a4695b758
@ -1,4 +1,4 @@
|
|||||||
{ fetchFromGitHub, stdenv, ffmpeg_3, cmake, libpng, pkgconfig, libjpeg
|
{ fetchFromGitHub, stdenv, ffmpeg_3, cmake, libpng, pkg-config, libjpeg
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -12,8 +12,9 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1bakbr714j7yxdal1f5iq0gcl4cxggbbgj227ihdh5kvygqlwich";
|
sha256 = "1bakbr714j7yxdal1f5iq0gcl4cxggbbgj227ihdh5kvygqlwich";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig ];
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
buildInputs = [ ffmpeg_3 libpng libjpeg ];
|
buildInputs = [ ffmpeg_3 libpng libjpeg ];
|
||||||
|
cmakeFlags = [ "-DENABLE_THUMBNAILER=ON" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/dirkvdb/ffmpegthumbnailer";
|
homepage = "https://github.com/dirkvdb/ffmpegthumbnailer";
|
||||||
@ -27,7 +28,7 @@ stdenv.mkDerivation rec {
|
|||||||
The only dependencies are ffmpeg and libpng.
|
The only dependencies are ffmpeg and libpng.
|
||||||
";
|
";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = [ maintainers.jagajaga ];
|
maintainers = [ maintainers.jagajaga ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user