From 42cd512356cdcb75fb09be073ce9579e0fb8862b Mon Sep 17 00:00:00 2001 From: Daniel Nagy Date: Sun, 14 Feb 2021 00:28:33 +0100 Subject: [PATCH] chickenEggs.string-utils: init at 2.4.0 --- pkgs/development/compilers/chicken/5/eggs.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/development/compilers/chicken/5/eggs.nix b/pkgs/development/compilers/chicken/5/eggs.nix index 32627d56f0c2..73c7f55e09d1 100644 --- a/pkgs/development/compilers/chicken/5/eggs.nix +++ b/pkgs/development/compilers/chicken/5/eggs.nix @@ -332,5 +332,24 @@ rec { ]; }; + string-utils = eggDerivation { + name = "string-utils-2.4.0"; + + src = fetchegg { + name = "string-utils"; + version = "2.4.0"; + sha256 = "09m3s0p199r2nmvc8qnqvbxjbq967gvwqrzp236wsw3hdcil6p8v"; + }; + + buildInputs = [ + srfi-1 + srfi-13 + srfi-69 + miscmacros + check-errors + utf8 + ]; + }; + }