openxray: 2188-november-2023-rc1 -> 2921-january-2025-rc1 (#375925)
[NixPkgs.git] / pkgs / by-name / li / libcsa / package.nix
blob5308a71d962df61e2ce3093ab8570baef23300e0
2   stdenv,
3   lib,
4   fetchFromGitHub,
5   unstableGitUpdater,
6 }:
7 stdenv.mkDerivation (finalAttrs: {
8   name = "csa";
9   version = "1.26-unstable-2024-03-22";
11   src = fetchFromGitHub {
12     owner = "sakov";
13     repo = "csa-c";
14     rev = "7b48134613d1d3b337af6d5762df9999a703fb1a";
15     hash = "sha256-G/VhXpdvXBT9I6pwiQXVqCoXhc29wJQpGyLeM3kgv7I=";
16   };
18   sourceRoot = "${finalAttrs.src.name}/csa";
20   passthru.updateScript = unstableGitUpdater { };
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   };