summary refs log blame commit diff
path: root/pkgs/desktops/enlightenment/ephoto.nix
blob: f1455f68338f2ddb11b5ef419e04423ee22a392e (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                              

                         
                   
                  
 
                  
                                                                     
                                                                    

    

                                            
                                                     

               
 



                 
 







                                                                                                 
{ 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.override { vanilla = true; })
    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 ];
  };
}