1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

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

This commit is contained in:
Matias Zwinger 2024-07-08 13:30:40 +03:00
parent daeb19c6a7
commit c19f4c5258

View file

@ -0,0 +1,29 @@
{
stdenv,
lib,
fetchFromGitHub,
unstableGitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
name = "nn";
version = "2.0.8-unstable-2024-04-08";
src = fetchFromGitHub {
owner = "sakov";
repo = "nn-c";
rev = "f8e880b6ae39ff4bb4d617f61db5f92311bd04b6";
hash = "sha256-SzkLxR5ZkIlCoMlN18+uc1/xYWhHhXMdd2PpA1jvnFI=";
};
sourceRoot = "${finalAttrs.src.name}/nn";
passthru.updateScript = unstableGitUpdater { };
meta = with lib; {
description = "C code for Natural Neighbours interpolation of 2D scattered data";
homepage = "https://github.com/sakov/nn-c/";
platforms = platforms.unix;
license = licenses.bsd3;
maintainers = with maintainers; [ mkez ];
};
})