tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libcsa: init at 1.26-unstable-2024-03-22
Matias Zwinger
1 year ago
75c4c3d4
daeb19c6
+30
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
li
libcsa
package.nix
+30
pkgs/by-name/li/libcsa/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 = "csa";
9
9
+
version = "1.26-unstable-2024-03-22";
10
10
+
11
11
+
src = fetchFromGitHub {
12
12
+
owner = "sakov";
13
13
+
repo = "csa-c";
14
14
+
rev = "7b48134613d1d3b337af6d5762df9999a703fb1a";
15
15
+
hash = "sha256-G/VhXpdvXBT9I6pwiQXVqCoXhc29wJQpGyLeM3kgv7I=";
16
16
+
};
17
17
+
18
18
+
sourceRoot = "${finalAttrs.src.name}/csa";
19
19
+
20
20
+
passthru.updateScript = unstableGitUpdater { };
21
21
+
22
22
+
meta = with lib; {
23
23
+
description = "C code for cubic spline approximation of 2D scattered data";
24
24
+
homepage = "https://github.com/sakov/csa-c/";
25
25
+
platforms = platforms.unix;
26
26
+
license = licenses.bsd3;
27
27
+
maintainers = with maintainers; [ mkez ];
28
28
+
mainProgram = "csabathy";
29
29
+
};
30
30
+
})