nixpkgs/pkgs/desktops/enlightenment/ephoto.nix
José Romildo Malaquias ac93f9bd33 enlightenment.{enlightenment,ephoto,rage,terminology}: use default pkgconfig
With efl-1.23.1 built with meson the native pkgconfig is not needed
anymore, and building fails with it.
2019-10-26 10:47:11 -03:00

31 lines
747 B
Nix

{ stdenv, fetchurl, pkgconfig, efl, pcre, mesa, makeWrapper }:
stdenv.mkDerivation rec {
pname = "ephoto";
version = "1.5";
src = fetchurl {
url = "http://www.smhouston.us/stuff/${pname}-${version}.tar.gz";
sha256 = "09kraa5zz45728h2dw1ssh23b87j01bkfzf977m48y1r507sy3vb";
};
nativeBuildInputs = [
pkgconfig
mesa.dev # otherwise pkg-config does not find gbm
makeWrapper
];
buildInputs = [
efl
pcre
];
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 ];
};
}