fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 stdenv,
3 lib,
4 fetchFromGitHub,
5 unstableGitUpdater,
6}:
7stdenv.mkDerivation (finalAttrs: {
8 name = "csa";
9 version = "1.26-unstable-2024-03-22";
10
11 src = fetchFromGitHub {
12 owner = "sakov";
13 repo = "csa-c";
14 rev = "7b48134613d1d3b337af6d5762df9999a703fb1a";
15 hash = "sha256-G/VhXpdvXBT9I6pwiQXVqCoXhc29wJQpGyLeM3kgv7I=";
16 };
17
18 sourceRoot = "${finalAttrs.src.name}/csa";
19
20 passthru.updateScript = unstableGitUpdater { };
21
22 meta = with lib; {
23 description = "C code for cubic spline approximation of 2D scattered data";
24 homepage = "https://github.com/sakov/csa-c/";
25 platforms = platforms.unix;
26 license = licenses.bsd3;
27 maintainers = with maintainers; [ mkez ];
28 mainProgram = "csabathy";
29 };
30})