SDL2_ttf: record provided pkg-config modules in meta
This is verified using testers.hasPkgConfigModules which leads to a slight refactor of the expression.
This commit is contained in:
parent
e3235021ec
commit
4c56be2a7e
1 changed files with 9 additions and 4 deletions
|
@ -1,11 +1,11 @@
|
||||||
{ lib, stdenv, pkg-config, darwin, fetchurl, SDL2, freetype, harfbuzz, libGL }:
|
{ lib, stdenv, pkg-config, darwin, fetchurl, SDL2, freetype, harfbuzz, libGL, testers }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "SDL2_ttf";
|
pname = "SDL2_ttf";
|
||||||
version = "2.20.2";
|
version = "2.20.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.libsdl.org/projects/SDL_ttf/release/${pname}-${version}.tar.gz";
|
url = "https://www.libsdl.org/projects/SDL_ttf/release/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
|
||||||
sha256 = "sha256-ncce2TSHUhsQeixKnKa/Q/ti9r3dXCawVea5FBiiIFM=";
|
sha256 = "sha256-ncce2TSHUhsQeixKnKa/Q/ti9r3dXCawVea5FBiiIFM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -18,10 +18,15 @@ stdenv.mkDerivation rec {
|
||||||
++ lib.optional (!stdenv.isDarwin) libGL
|
++ lib.optional (!stdenv.isDarwin) libGL
|
||||||
++ lib.optional stdenv.isDarwin darwin.libobjc;
|
++ lib.optional stdenv.isDarwin darwin.libobjc;
|
||||||
|
|
||||||
|
passthru.tests.pkg-config = testers.hasPkgConfigModules {
|
||||||
|
package = finalAttrs.finalPackage;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Support for TrueType (.ttf) font files with Simple Directmedia Layer";
|
description = "Support for TrueType (.ttf) font files with Simple Directmedia Layer";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
license = licenses.zlib;
|
license = licenses.zlib;
|
||||||
homepage = "https://github.com/libsdl-org/SDL_ttf";
|
homepage = "https://github.com/libsdl-org/SDL_ttf";
|
||||||
|
pkgConfigModules = [ "SDL2_ttf" ];
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Reference in a new issue