nixpkgs/pkgs/development/libraries/iso-codes/default.nix

28 lines
747 B
Nix
Raw Normal View History

{stdenv, fetchurl, gettext, python3}:
stdenv.mkDerivation rec {
pname = "iso-codes";
version = "4.4";
2017-03-14 02:29:03 +01:00
src = fetchurl {
2019-08-31 01:57:29 +02:00
url = "https://salsa.debian.org/iso-codes-team/iso-codes/-/archive/${pname}-${version}/${pname}-${pname}-${version}.tar.bz2";
sha256 = "02x0wcz783ammkdrmrh31wsmww481xbkbz70vf766ivbnn5sfxn6";
};
2019-05-07 02:58:25 +02:00
patchPhase = ''
for i in `find . -name \*.py`
do
2017-03-14 02:29:03 +01:00
sed -i -e "s|#!/usr/bin/env python|#!${python3}/bin/python|" $i
done
'';
2019-05-07 02:58:25 +02:00
nativeBuildInputs = [ gettext python3 ];
2017-03-14 02:29:03 +01:00
meta = with stdenv.lib; {
homepage = https://salsa.debian.org/iso-codes-team/iso-codes;
description = "Various ISO codes packaged as XML files";
license = licenses.lgpl21;
2017-03-14 02:29:03 +01:00
platforms = platforms.all;
};
}