Skip to content

Commit

Permalink
ephoto: add dependency on mesa_noglu.dev (#47136)
Browse files Browse the repository at this point in the history
  • Loading branch information
romildo authored and xeji committed Sep 21, 2018
1 parent 60b6d5f commit e372ab4
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions pkgs/desktops/enlightenment/ephoto.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, efl, pcre, makeWrapper }:
{ stdenv, fetchurl, pkgconfig, efl, pcre, mesa_noglu, makeWrapper }:

stdenv.mkDerivation rec {
name = "ephoto-${version}";
Expand All @@ -9,9 +9,16 @@ stdenv.mkDerivation rec {
sha256 = "09kraa5zz45728h2dw1ssh23b87j01bkfzf977m48y1r507sy3vb";
};

nativeBuildInputs = [ (pkgconfig.override { vanilla = true; }) makeWrapper ];
nativeBuildInputs = [
(pkgconfig.override { vanilla = true; })
mesa_noglu.dev # otherwise pkg-config does not find gbm
makeWrapper
];

buildInputs = [ efl pcre ];
buildInputs = [
efl
pcre
];

meta = {
description = "Image viewer and editor written using the Enlightenment Foundation Libraries";
Expand Down

0 comments on commit e372ab4

Please sign in to comment.