nn: init at 2.0.8-unstable-2024-04-08

+29
+29
pkgs/by-name/nn/nn/package.nix
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchFromGitHub, 5 + unstableGitUpdater, 6 + }: 7 + stdenv.mkDerivation (finalAttrs: { 8 + name = "nn"; 9 + version = "2.0.8-unstable-2024-04-08"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "sakov"; 13 + repo = "nn-c"; 14 + rev = "f8e880b6ae39ff4bb4d617f61db5f92311bd04b6"; 15 + hash = "sha256-SzkLxR5ZkIlCoMlN18+uc1/xYWhHhXMdd2PpA1jvnFI="; 16 + }; 17 + 18 + sourceRoot = "${finalAttrs.src.name}/nn"; 19 + 20 + passthru.updateScript = unstableGitUpdater { }; 21 + 22 + meta = with lib; { 23 + description = "C code for Natural Neighbours interpolation of 2D scattered data"; 24 + homepage = "https://github.com/sakov/nn-c/"; 25 + platforms = platforms.unix; 26 + license = licenses.bsd3; 27 + maintainers = with maintainers; [ mkez ]; 28 + }; 29 + })