core/pkgs/by-name/li/libjpeg/default.nix

30 lines
781 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ 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;
};
})