core/pkgs/by-name/li/libjpeg/default.nix
2024-05-13 22:24:10 +01:00

27 lines
779 B
Nix

{ lib, stdenv, fetchurl, testers, static ? false }:
stdenv.mkDerivation (finalAttrs: {
pname = "libjpeg";
version = "9f";
src = fetchurl {
url = "http://www.ijg.org/files/jpegsrc.v${finalAttrs.version}.tar.gz";
sha256 = "sha256-BHBcEQyyRpyqeftx+6PXv4NJFHBulkGkWJSFwfgyVls=";
};
configureFlags = lib.optional static "--enable-static --disable-shared";
outputs = [ "bin" "dev" "out" "man" ];
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
meta = with lib; {
homepage = "https://www.ijg.org/";
description = "A library that implements the JPEG image file format";
maintainers = with maintainers; [ ];
license = licenses.free;
pkgConfigModules = [ "libjpeg" ];
platforms = platforms.unix;
};
})