mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
7ffee4de3c
Use vanilla pkg-config to build EFL applications. The EFL library has a set of pkg-config files (*.pc) which uses private requirements. The default pkg-config setup on nixpkgs is patched to disable resolving those requirements. See http://bugs.freedesktop.org/show_bug.cgi?id=4738 for reference. As a consequence each package depending on efl has to explicitly set the search path in order to be able to find the corresponding header files. By using vanilla pkg-config this is not necessary (and this is the expected behaviour for pkg-config), allowing simpler nix expressions.
28 lines
810 B
Nix
28 lines
810 B
Nix
{ stdenv, fetchurl, pkgconfig, efl, pcre, curl, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ephoto-${version}";
|
|
version = "1.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.smhouston.us/stuff/${name}.tar.gz";
|
|
sha256 = "09kraa5zz45728h2dw1ssh23b87j01bkfzf977m48y1r507sy3vb";
|
|
};
|
|
|
|
nativeBuildInputs = [ (pkgconfig.override { vanilla = true; }) makeWrapper ];
|
|
|
|
buildInputs = [ efl pcre curl ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/ephoto --prefix LD_LIBRARY_PATH : ${curl.out}/lib
|
|
'';
|
|
|
|
meta = {
|
|
description = "Image viewer and editor written using the Enlightenment Foundation Libraries";
|
|
homepage = http://smhouston.us/ephoto/;
|
|
license = stdenv.lib.licenses.bsd2;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
};
|
|
}
|