2021-01-19 07:50:56 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, libtool, autoconf, automake
|
2018-05-02 22:35:15 +02:00
|
|
|
, libjpeg, libexif
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-14 03:37:56 +02:00
|
|
|
pname = "epeg";
|
|
|
|
version = "0.9.2";
|
2018-05-02 22:35:15 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mattes";
|
|
|
|
repo = "epeg";
|
2019-04-14 03:37:56 +02:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "14bjl9v6zzac4df25gm3bkw3n0mza5iazazsi65gg3m6661x6c5g";
|
2018-05-02 22:35:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config libtool autoconf automake ];
|
2018-05-02 22:35:15 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ libjpeg libexif ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/mattes/epeg";
|
2018-05-02 22:35:15 +02:00
|
|
|
description = "Insanely fast JPEG/ JPG thumbnail scaling";
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2018-08-23 11:57:07 +02:00
|
|
|
license = {
|
|
|
|
url = "https://github.com/mattes/epeg#license";
|
|
|
|
};
|
2018-05-02 22:35:15 +02:00
|
|
|
maintainers = with maintainers; [ nh2 ];
|
|
|
|
};
|
|
|
|
}
|