2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, zlib, libpng, gnumake3, cmake }:
|
2010-05-02 20:45:52 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-07-18 11:33:13 -07:00
|
|
|
version = "0.3.95";
|
2016-11-06 06:04:49 -08:00
|
|
|
name = "lensfun-${version}";
|
2010-05-02 20:45:52 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-11-06 06:04:49 -08:00
|
|
|
url = "mirror://sourceforge/lensfun/${version}/${name}.tar.gz";
|
2018-07-18 11:33:13 -07:00
|
|
|
sha256 = "0218f3xrlln0jmh4gcf1zbpvi2bidgl3b2mblf6c810n7j1rrhl2";
|
2010-05-02 20:45:52 -07:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib zlib libpng cmake gnumake3 ];
|
2010-05-02 20:45:52 -07:00
|
|
|
|
2018-07-25 14:44:21 -07:00
|
|
|
configureFlags = [ "-v" ];
|
2010-08-18 08:56:40 -07:00
|
|
|
|
2010-05-02 20:45:52 -07:00
|
|
|
meta = with stdenv.lib; {
|
2018-08-01 02:04:22 -07:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
maintainers = with maintainers; [ enzime ];
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl3;
|
2010-08-18 08:56:40 -07:00
|
|
|
description = "An opensource database of photographic lenses and their characteristics";
|
2014-05-18 04:25:43 -07:00
|
|
|
homepage = http://lensfun.sourceforge.net/;
|
2010-05-02 20:45:52 -07:00
|
|
|
};
|
|
|
|
}
|