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