2258b21e4b
Build-tested on x86_64 Linux and on Darwin.
28 lines
752 B
Nix
28 lines
752 B
Nix
{ stdenv, fetchurl, python, exiv2, scons, boost }:
|
|
|
|
let version = "0.3.2"; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pyexiv2-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://launchpad.net/pyexiv2/0.3.x/0.3.2/+download/${name}.tar.bz2";
|
|
sha256 = "09r1ga6kj5cnmrldpkqzvdhh7xi7aad9g4fbcr1gawgsd9y13g0a";
|
|
};
|
|
|
|
buildPhase = ''
|
|
sed -i -e "s@env = Environment()@env = Environment( ENV = os.environ )@" src/SConscript
|
|
scons
|
|
'';
|
|
installPhase = ''
|
|
sed -i -e "s@ python_lib_path = get_python_lib(plat_specific=True)@ python_lib_path = \'/lib/python2.7/site-packages\'@" src/SConscript
|
|
scons install DESTDIR=$out
|
|
'';
|
|
|
|
buildInputs = [ python exiv2 scons boost ];
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|