mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 00:22:13 +00:00
ba443448e8
svn path=/nixpkgs/trunk/; revision=8060
10 lines
218 B
Nix
10 lines
218 B
Nix
{stdenv, mesaSrc}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mesa-headers-6.5.2"; # !!! keep up-to-date
|
|
buildCommand = "
|
|
unpackFile ${mesaSrc}
|
|
ensureDir $out/include
|
|
cp -prvd Mesa-*/include/GL $out/include/
|
|
";
|
|
} |