matchbox: fix build
This commit is contained in:
parent
c068c7a63f
commit
60c120e922
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, libmatchbox, pkgconfig}:
|
{ stdenv, fetchurl, pkgconfig, libmatchbox, libX11, libXext }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "matchbox-${version}";
|
name = "matchbox-${version}";
|
||||||
@ -6,6 +6,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ libmatchbox ];
|
buildInputs = [ libmatchbox ];
|
||||||
|
NIX_LDFLAGS = "-lX11 -L${libX11}/lib -lXext -L${libXext}/lib";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://downloads.yoctoproject.org/releases/matchbox/matchbox-window-manager/${version}/matchbox-window-manager-${version}.tar.bz2";
|
url = "https://downloads.yoctoproject.org/releases/matchbox/matchbox-window-manager/${version}/matchbox-window-manager-${version}.tar.bz2";
|
||||||
@ -14,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "X window manager for non-desktop embedded systems";
|
description = "X window manager for non-desktop embedded systems";
|
||||||
homepage = http://matchbox-project.org/;
|
homepage = "https://www.yoctoproject.org/software-item/matchbox/";
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user