ae91cbe6cc
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
35 lines
834 B
Nix
35 lines
834 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, libtool, autoconf, automake
|
|
, libjpeg, libexif
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "epeg";
|
|
version = "0.9.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mattes";
|
|
repo = "epeg";
|
|
rev = "v${version}";
|
|
sha256 = "14bjl9v6zzac4df25gm3bkw3n0mza5iazazsi65gg3m6661x6c5g";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ pkg-config libtool autoconf automake ];
|
|
|
|
propagatedBuildInputs = [ libjpeg libexif ];
|
|
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/mattes/epeg";
|
|
description = "Insanely fast JPEG/ JPG thumbnail scaling";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
license = {
|
|
url = "https://github.com/mattes/epeg#license";
|
|
};
|
|
maintainers = with maintainers; [ nh2 ];
|
|
};
|
|
}
|