summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorKarn Kallio <tierpluspluslists@skami.org>2016-09-01 16:21:15 -0400
committerShea Levy <shea@shealevy.com>2016-09-01 20:03:13 -0400
commit49d59ce0adf8397778ec3b9a36a149a66a013c88 (patch)
tree87b7f88100ecf7c69a75729901d1ba0a73c43681 /pkgs
parent8bedff0e9208a763a6c85b53446b5dcc0e4c55e8 (diff)
downloadnixlib-49d59ce0adf8397778ec3b9a36a149a66a013c88.tar
nixlib-49d59ce0adf8397778ec3b9a36a149a66a013c88.tar.gz
nixlib-49d59ce0adf8397778ec3b9a36a149a66a013c88.tar.bz2
nixlib-49d59ce0adf8397778ec3b9a36a149a66a013c88.tar.lz
nixlib-49d59ce0adf8397778ec3b9a36a149a66a013c88.tar.xz
nixlib-49d59ce0adf8397778ec3b9a36a149a66a013c88.tar.zst
nixlib-49d59ce0adf8397778ec3b9a36a149a66a013c88.zip
glu dev in mesa attribute
After making multiple outputs in the mesa_glu package the headers are
not included in the mesa attribute.  The attached patch puts them in it.

From ced24208a300bea8234e7898ae6fec34fbd67289 Mon Sep 17 00:00:00 2001
From: Karn Kallio <kkallio@skami.org>
Date: Thu, 1 Sep 2016 16:18:23 -0400
Subject: [PATCH] mesa: Add the mesa glu headers to the mesa attribute.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/all-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 351d96a35ae0..6826d4bc5d01 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -8772,7 +8772,7 @@ in
     name = "mesa-${mesa_noglu.version}";
     # FIXME: this causes mesa to have a runtime dependency on
     # mesa_noglu.dev.
-    paths = [ mesa_noglu.dev mesa_noglu.out mesa_glu ];
+    paths = [ mesa_noglu.dev mesa_noglu.out mesa_glu mesa_glu.dev ];
     meta = {
       platforms = lib.platforms.unix;
     };