1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00
nixpkgs/pkgs/development/ocaml-modules/csexp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
667 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage, liquidsoap }:
2020-09-03 01:00:00 +01:00
buildDunePackage rec {
pname = "csexp";
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";
hash = "sha256-GhTdBLtDeaQZkCSFUGKMd5E6nAfzw1wTcLaWDml3h/8=";
2020-09-03 01:00:00 +01:00
};
minimalOCamlVersion = "4.03";
2021-06-05 15:34:30 +01:00
passthru.tests = {
inherit liquidsoap;
};
2020-09-03 01:00:00 +01:00
meta = with lib; {
description = "Minimal support for Canonical S-expressions";
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;
maintainers = [ ];
2020-09-03 01:00:00 +01:00
};
}