libGLU: Add meta.pkgConfigModules
and test
This commit is contained in:
parent
b1aa0e9f2a
commit
b58f0d0fa5
1 changed files with 11 additions and 4 deletions
|
@ -1,10 +1,14 @@
|
|||
{ lib, stdenv, fetchurl, pkg-config, libGL, ApplicationServices }:
|
||||
{ lib, stdenv, fetchurl, pkg-config, libGL, ApplicationServices
|
||||
, testers
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "glu";
|
||||
version = "9.0.2";
|
||||
|
||||
src = fetchurl {
|
||||
src = let
|
||||
inherit (finalAttrs) pname version;
|
||||
in fetchurl {
|
||||
url = "https://mesa.freedesktop.org/archive/${pname}/${pname}-${version}.tar.xz";
|
||||
sha256 = "sha256-bnKA/1hcah2d/N8vykiSUWNLM3e/wzwp5AAkZqONAtQ=";
|
||||
};
|
||||
|
@ -15,11 +19,14 @@ stdenv.mkDerivation rec {
|
|||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
||||
|
||||
meta = {
|
||||
description = "OpenGL utility library";
|
||||
homepage = "https://cgit.freedesktop.org/mesa/glu/";
|
||||
license = lib.licenses.sgi-b-20;
|
||||
pkgConfigModules = [ "glu" ];
|
||||
platforms = lib.platforms.unix;
|
||||
broken = stdenv.hostPlatform.isAndroid;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue