Port to Chicken 6
This commit is contained in:
parent
9728c158bb
commit
ec4ba58b86
4 changed files with 8 additions and 4 deletions
|
@ -27,8 +27,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
srcs = [
|
srcs = [
|
||||||
(fetchgit {
|
(fetchgit {
|
||||||
url = "git://code.call-cc.org/chicken-core";
|
url = "git://code.call-cc.org/chicken-core";
|
||||||
rev = "8b7b3124c47e018388f9f6b80bdb89813248ac76";
|
rev = "00d3bf1326bbd0f828a1aac9fb98d28b990bcea3";
|
||||||
sha256 = "sha256-BdZhxW6cgN5Lr1YFVZ+iejKMEvGYJ8sQlc+4DnO+Djw=";
|
sha256 = "sha256-ykVKYY8RrpVzWYvC3MF1usowxNToPzfrlKX2/kus620=";
|
||||||
})
|
})
|
||||||
(fetchurl {
|
(fetchurl {
|
||||||
url = "https://code.call-cc.org/dev-snapshots/2024/07/01/chicken-6.0.0-bootstrap.tar.gz";
|
url = "https://code.call-cc.org/dev-snapshots/2024/07/01/chicken-6.0.0-bootstrap.tar.gz";
|
||||||
|
|
|
@ -4,7 +4,7 @@ with import <nixpkgs> {
|
||||||
tcc-mob = final.callPackage ./nix/tinycc.nix { stdenv = final.gcc13Stdenv; };
|
tcc-mob = final.callPackage ./nix/tinycc.nix { stdenv = final.gcc13Stdenv; };
|
||||||
chicken = final.callPackage ./nix/chicken.nix {
|
chicken = final.callPackage ./nix/chicken.nix {
|
||||||
stdenv = final.gcc13Stdenv;
|
stdenv = final.gcc13Stdenv;
|
||||||
version = "6.0.0-8b7b312";
|
version = "6.0.0-00d3bf13";
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
2
toml.egg
2
toml.egg
|
@ -3,7 +3,7 @@
|
||||||
(synopsis "A Chicken binding to read TOML configuration files")
|
(synopsis "A Chicken binding to read TOML configuration files")
|
||||||
(category parsing)
|
(category parsing)
|
||||||
(license "MIT")
|
(license "MIT")
|
||||||
(version "0.8")
|
(version "0.9")
|
||||||
(dependencies rfc3339 prometheus)
|
(dependencies rfc3339 prometheus)
|
||||||
(test-dependencies test)
|
(test-dependencies test)
|
||||||
|
|
||||||
|
|
4
toml.release-info.6
Normal file
4
toml.release-info.6
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
;; -*- Scheme -*-
|
||||||
|
(repo git "https://forgejo.lyrion.ch/Chicken/toml.git")
|
||||||
|
(uri targz "https://forgejo.lyrion.ch/Chicken/toml/archive/{egg-release}.tar.gz")
|
||||||
|
(release "0.9")
|
Loading…
Reference in a new issue