Created
January 7, 2017 13:05
-
-
Save mrkgnao/73e3d9c476a6b839fec3cc193509f845 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import <nixpkgs> {}; | |
stdenv.mkDerivation { | |
name = "polybar-git"; | |
src = ./polybar; | |
buildInputs = | |
[ | |
boost | |
pkgconfig | |
xlibs.libXft | |
xlibs.libXau | |
xlibs.libXdmcp | |
cmake | |
expat | |
xorg.xcbproto | |
xorg.xcbutil | |
xorg.xcbutilwm | |
xorg.xcbutilimage | |
xorg.libpthreadstubs | |
xorg.libxcb | |
python2 | |
]; | |
installPhase = | |
'' | |
mkdir build | |
cd build | |
cmake .. | |
''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment