1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

Added iso-codes package

svn path=/nixpkgs/trunk/; revision=15117
This commit is contained in:
Sander van der Burg 2009-04-17 15:08:14 +00:00
parent 006c5d5120
commit dc192d36fe

View file

@ -0,0 +1,16 @@
{stdenv, fetchurl, gettext, python}:
stdenv.mkDerivation {
name = "iso-codes-3.5";
src = fetchurl {
url = ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/iso-codes-3.5.tar.bz2;
sha256 = "2aac5f37a9ebb5af9c5d186ba1428f05ad779c7760e279cd8b86897a5d434807";
};
patchPhase = ''
for i in `find . -name \*.py`
do
sed -i -e "s|#!/usr/bin/env python|#!${python}/bin/python|" $i
done
'';
buildInputs = [ gettext ];
}