Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libjpeg / default.nix
blobaaa481e8fd5d8a1926e15f7adcd525d0278010ac
1 { lib, stdenv, fetchurl
2 , testers
3 , static ? false
4 }:
6 stdenv.mkDerivation (finalAttrs: {
7   pname = "libjpeg";
8   version = "9e";
10   src = fetchurl {
11     url = "http://www.ijg.org/files/jpegsrc.v${finalAttrs.version}.tar.gz";
12     sha256 = "sha256-QHfWpqda6wGIT3CJGdJZNMkzBeSffj8225EpMg5vTz0=";
13   };
15   configureFlags = lib.optional static "--enable-static --disable-shared";
17   outputs = [ "bin" "dev" "out" "man" ];
19   passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
21   meta = with lib; {
22     homepage = "https://www.ijg.org/";
23     description = "A library that implements the JPEG image file format";
24     maintainers = with maintainers; [ ];
25     license = licenses.free;
26     pkgConfigModules = [ "libjpeg" ];
27     platforms = platforms.unix;
28   };