lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 33 lines 715 B view raw
1{ lib, stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation rec { 4 pname = "proj-datumgrid"; 5 version = "world-1.0"; 6 7 src = fetchFromGitHub { 8 owner = "OSGeo"; 9 repo = "proj-datumgrid"; 10 rev = version; 11 sha256 = "132wp77fszx33wann0fjkmi1isxvsb0v9iw0gd9sxapa9h6hf3am"; 12 }; 13 14 sourceRoot = "source/scripts"; 15 16 buildPhase = '' 17 $CC nad2bin.c -o nad2bin 18 ''; 19 20 installPhase = '' 21 mkdir -p $out/bin 22 cp nad2bin $out/bin/ 23 ''; 24 25 meta = with lib; { 26 description = "Repository for proj datum grids"; 27 homepage = "https://proj4.org"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ ]; 30 mainProgram = "nad2bin"; 31 platforms = platforms.linux ++ platforms.darwin; 32 }; 33}