tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nn: init at 2.0.8-unstable-2024-04-08
Matias Zwinger
2 years ago
c19f4c52
daeb19c6
+29
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
nn
nn
package.nix
+29
pkgs/by-name/nn/nn/package.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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
+
})