nixpkgs/pkgs/development/compilers/chicken/5/default.nix

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

41 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, newScope, fetchurl }:
2018-11-14 03:17:50 +00:00
let
callPackage = newScope self;
2022-12-19 23:00:00 +00:00
self = with lib; {
2022-12-26 14:00:00 +00:00
inherit callPackage;
2018-11-14 03:17:50 +00:00
fetchegg = { pname, version, sha256, ... }:
fetchurl {
2022-12-19 23:00:00 +00:00
inherit sha256;
url =
"https://code.call-cc.org/egg-tarballs/5/${pname}/${pname}-${version}.tar.gz";
2022-12-19 23:00:00 +00:00
};
2018-11-14 03:17:50 +00:00
eggDerivation = callPackage ./eggDerivation.nix { };
chicken = callPackage ./chicken.nix {
bootstrap-chicken = self.chicken.override { bootstrap-chicken = null; };
};
chickenEggs = recurseIntoAttrs (mapAttrs (pname:
2022-12-19 23:00:00 +00:00
eggData@{ version, synopsis, dependencies, license, ... }:
self.eggDerivation {
name = "${pname}-${version}";
src = self.fetchegg (eggData // { inherit pname; });
2022-12-19 23:00:00 +00:00
buildInputs = map (x: self.chickenEggs.${x}) dependencies;
meta.homepage =
"https://code.call-cc.org/cgi-bin/gitweb.cgi?p=eggs-5-latest.git;a=tree;f=${pname}/${version}";
2022-12-19 23:00:00 +00:00
meta.description = synopsis;
meta.license = (licenses // {
"bsd-2-clause" = licenses.bsd2;
"bsd-3-clause" = licenses.bsd3;
"public-domain" = licenses.publicDomain;
}).${license} or license;
}) (importTOML ./deps.toml));
2018-11-14 03:17:50 +00:00
egg2nix = callPackage ./egg2nix.nix { };
};
in lib.recurseIntoAttrs self