mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 15:58:36 +00:00
15 lines
218 B
Bash
15 lines
218 B
Bash
. $stdenv/setup
|
|
|
|
makeFlags="linux-x86"
|
|
|
|
installPhase=installPhase
|
|
installPhase() {
|
|
mkdir $out
|
|
mkdir $out/lib
|
|
cp -pvd lib/* $out/lib
|
|
mkdir $out/include
|
|
cp -rv include/GL $out/include
|
|
}
|
|
|
|
genericBuild
|