nixpkgs/pkgs/development/libraries/proj.4/default.nix
Yury G. Kudryashov 5bca69ac34 Nix-expr style review
Unneded args.something replaced with
args: with args;
line. After this line args is the only place where we can recieve variables from.

Also removed several
buildInputs = [];
lines.

svn path=/nixpkgs/trunk/; revision=10415
2008-01-30 17:20:48 +00:00

16 lines
360 B
Nix

args: with args;
stdenv.mkDerivation {
name = "proj-4.5.0";
src = fetchurl {
url = ftp://ftp.remotesensing.org/proj/proj-4.5.0.tar.gz;
sha256 = "1d2qz0vgp13hkfgaz7hkblhb9w2fh2blbjqz73xdinwc08cmflqv";
};
meta = {
description = "Cartographic Projections Library";
homepage = http://proj.maptools.org;
license = "MIT";
};
}