Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
709 B
Nix
38 lines
709 B
Nix
{
|
|
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 = "${src.name}/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 = [ ];
|
|
mainProgram = "nad2bin";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|