2023-03-26 05:20:00 +01:00
|
|
|
{ lib, fetchurl, buildDunePackage, liquidsoap }:
|
2020-09-03 01:00:00 +01:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "csexp";
|
2023-03-24 04:20:00 +00:00
|
|
|
version = "1.5.2";
|
2020-09-03 01:00:00 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ocaml-dune/csexp/releases/download/${version}/csexp-${version}.tbz";
|
2023-03-24 04:20:00 +00:00
|
|
|
hash = "sha256-GhTdBLtDeaQZkCSFUGKMd5E6nAfzw1wTcLaWDml3h/8=";
|
2020-09-03 01:00:00 +01:00
|
|
|
};
|
|
|
|
|
2023-03-24 04:20:00 +00:00
|
|
|
minimalOCamlVersion = "4.03";
|
2021-06-05 15:34:30 +01:00
|
|
|
|
2023-03-26 05:20:00 +01:00
|
|
|
passthru.tests = {
|
|
|
|
inherit liquidsoap;
|
|
|
|
};
|
|
|
|
|
2020-09-03 01:00:00 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Minimal support for Canonical S-expressions";
|
2023-03-26 05:20:00 +01:00
|
|
|
homepage = "https://github.com/ocaml-dune/csexp";
|
|
|
|
changelog = "https://github.com/ocaml-dune/csexp/raw/${version}/CHANGES.md";
|
2020-09-03 01:00:00 +01:00
|
|
|
license = licenses.mit;
|
2024-07-28 15:44:11 +01:00
|
|
|
maintainers = [ ];
|
2020-09-03 01:00:00 +01:00
|
|
|
};
|
|
|
|
}
|