571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl
|
|
, meson, ninja
|
|
, pkg-config, libGLX
|
|
, testers
|
|
, gitUpdater
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "glu";
|
|
version = "9.0.3";
|
|
|
|
src = let
|
|
inherit (finalAttrs) pname version;
|
|
in fetchurl {
|
|
url = "https://mesa.freedesktop.org/archive/${pname}/${pname}-${version}.tar.xz";
|
|
hash = "sha256-vUP+EvN0sRkusV/iDkX/RWubwmq1fw7ukZ+Wyg+KMw8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
|
propagatedBuildInputs = [ libGLX ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
mesonFlags = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"-Dgl_provider=gl" # glvnd is default
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
tests = {
|
|
pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
};
|
|
updateScript = gitUpdater {
|
|
# No nicer place to find latest release.
|
|
url = "https://gitlab.freedesktop.org/mesa/glu";
|
|
rev-prefix = "glu-";
|
|
};
|
|
};
|
|
|
|
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;
|
|
};
|
|
})
|