nixpkgs/pkgs/development/libraries/lensfun/default.nix
Yury G. Kudryashov 1e4d14863c make lensfun configure output debug info
svn path=/nixpkgs/trunk/; revision=23233
2010-08-18 15:56:40 +00:00

24 lines
652 B
Nix

{ stdenv, fetchurl, pkgconfig, python, glib, zlib, libpng }:
stdenv.mkDerivation rec {
name = "lensfun-0.2.5";
src = fetchurl {
url = "http://download.berlios.de/lensfun/${name}.tar.bz2";
sha256 = "11zvi3lk60iljync3a495h9la7makx6lf22fbvr4lwc933mrh562";
};
patchPhase = "sed -e 's@/usr/bin/python@${python}/bin/python@' -i configure";
buildInputs = [ pkgconfig glib zlib libpng ];
configureFlags = "-v";
meta = with stdenv.lib; {
platforms = platforms.all;
maintainers = [ maintainers.urkud ];
license = "LGPL3";
description = "An opensource database of photographic lenses and their characteristics";
};
}