nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 19.03 20 lines 513 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation { 4 name = "proj-5.2.0"; 5 6 src = fetchurl { 7 url = https://download.osgeo.org/proj/proj-5.2.0.tar.gz; 8 sha256 = "0q3ydh2j8qhwlxmnac72pg69rw2znbi5b6k5wama8qmwzycr94gg"; 9 }; 10 11 doCheck = stdenv.is64bit; 12 13 meta = with stdenv.lib; { 14 description = "Cartographic Projections Library"; 15 homepage = http://trac.osgeo.org/proj/; 16 license = licenses.mit; 17 platforms = platforms.linux ++ platforms.darwin; 18 maintainers = with maintainers; [ vbgl ]; 19 }; 20}