My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/proj-datumgrid/default.nix

33 lines
715 B

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "proj-datumgrid";
version = "world-1.0";
src = fetchFromGitHub {
owner = "OSGeo";
repo = "proj-datumgrid";
rev = version;
sha256 = "132wp77fszx33wann0fjkmi1isxvsb0v9iw0gd9sxapa9h6hf3am";
};
sourceRoot = "source/scripts";
buildPhase = ''
$CC nad2bin.c -o nad2bin
'';
installPhase = ''
mkdir -p $out/bin
cp nad2bin $out/bin/
'';
meta = with lib; {
description = "Repository for proj datum grids";
homepage = "https://proj4.org";
license = licenses.mit;
maintainers = with maintainers; [ ];
mainProgram = "nad2bin";
platforms = platforms.linux ++ platforms.darwin;
};
}