mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
d387b0ef45
Add an indirection between gerbil package parameters and nix packages computed from those parameters, so overlays can easily override the former. Run unit-tests of gerbil packages (not integration tests). Fix binaries for gerbil packages. Fix support for gerbil packages including binaries.
154 lines
5.5 KiB
Nix
154 lines
5.5 KiB
Nix
{ pkgs, lib, callPackage, ... }:
|
|
|
|
with pkgs.gerbil-support; {
|
|
|
|
prePackages-unstable =
|
|
let pks = [ ./gerbil-libp2p.nix ./smug-gerbil.nix
|
|
./gerbil-utils.nix ./gerbil-crypto.nix ./gerbil-poo.nix
|
|
./gerbil-persist.nix ./gerbil-ethereum.nix ];
|
|
call = pkg: callPackage pkg prePackage-defaults;
|
|
pkgName = pkg: lib.removeSuffix ".nix" (baseNameOf pkg);
|
|
f = pkg: { name = pkgName pkg; value = call pkg; }; in
|
|
builtins.listToAttrs (map f pks);
|
|
|
|
prePackage-defaults = {
|
|
gerbil = pkgs.gerbil-unstable;
|
|
gambit-params = pkgs.gambit-support.unstable-params;
|
|
gerbilPackages = gerbilPackages-unstable;
|
|
git-version = "";
|
|
version-path = "";
|
|
gerbilInputs = [];
|
|
nativeBuildInputs = [];
|
|
buildInputs = [];
|
|
buildScript = "./build.ss";
|
|
postInstall = "";
|
|
softwareName = "";
|
|
};
|
|
|
|
gerbilPackages-unstable =
|
|
builtins.mapAttrs (_: gerbilPackage) prePackages-unstable;
|
|
|
|
resolve-pre-src = pre-src: pre-src.fun (removeAttrs pre-src ["fun"]);
|
|
|
|
gerbilVersionFromGit = pkg:
|
|
let version-path = "${pkg.passthru.pre-pkg.version-path}.ss"; in
|
|
if builtins.pathExists version-path then
|
|
let m =
|
|
builtins.match "\\(import :clan/versioning.*\\)\n\\(register-software \"([-_.A-Za-z0-9]+)\" \"([-_.A-Za-z0-9]+)\"\\) ;; ([-0-9]+)\n"
|
|
(builtins.readFile version-path); in
|
|
{ version = builtins.elemAt m 2; git-version = builtins.elemAt m 1; }
|
|
else { version = "0.0";
|
|
git-version = let gitpath = "${toString pkg.src}/.git"; in
|
|
if builtins.pathExists gitpath then lib.commitIdFromGitRepo gitpath else "0"; };
|
|
|
|
gerbilSkippableFiles = [".git" ".build" ".build_outputs" "run" "result" "dep" "BLAH"
|
|
"version.ss" "tmp.nix"];
|
|
|
|
gerbilSourceFilter = path: type:
|
|
let baseName = baseNameOf path; in
|
|
! (builtins.elem baseName gerbilSkippableFiles || lib.hasSuffix "~" baseName);
|
|
|
|
gerbilFilterSource = builtins.filterSource gerbilSourceFilter;
|
|
|
|
# Use this function in any package that uses Gerbil libraries, to define the GERBIL_LOADPATH.
|
|
gerbilLoadPath =
|
|
gerbilInputs: builtins.concatStringsSep ":" (map (x: x + "/gerbil/lib") gerbilInputs);
|
|
|
|
path-src = path: { fun = _: path; };
|
|
|
|
view = lib.debug.traceSeqN 4;
|
|
|
|
sha256-of-pre-src = pre-src: if pre-src ? sha256 then pre-src.sha256 else "none";
|
|
|
|
overrideSrcIfShaDiff = name: new-pre-src: super:
|
|
let old-sha256 = sha256-of-pre-src super.${name}.pre-src;
|
|
new-sha256 = sha256-of-pre-src new-pre-src; in
|
|
if old-sha256 == new-sha256 then {} else
|
|
view "Overriding ${name} old-sha256: ${old-sha256} new-sha256: ${new-sha256}"
|
|
{ ${name} = super.${name} // {
|
|
pre-src = new-pre-src;
|
|
version = "override";
|
|
git-version = if new-pre-src ? rev then lib.substring 0 7 new-pre-src.rev else "unknown";};};
|
|
|
|
pkgsOverrideGerbilPackageSrc = name: pre-src: pkgs: super: {
|
|
gerbil-support = (super-support:
|
|
{ prePackages-unstable =
|
|
(super-ppu: super-ppu // (overrideSrcIfShaDiff name pre-src super-ppu))
|
|
super-support.prePackages-unstable;}) super.gerbil-support;};
|
|
|
|
# Use this function to create a Gerbil library. See gerbil-utils as an example.
|
|
gerbilPackage = prePackage:
|
|
let pre-pkg = prePackage-defaults // prePackage;
|
|
inherit (pre-pkg) pname version pre-src git-version meta
|
|
softwareName gerbil-package version-path gerbil gambit-params
|
|
gerbilInputs nativeBuildInputs buildInputs buildScript postInstall;
|
|
buildInputs_ = buildInputs; in
|
|
pkgs.gccStdenv.mkDerivation rec { # See ../gambit/build.nix regarding why we use gccStdenv
|
|
inherit meta pname version nativeBuildInputs postInstall;
|
|
passthru = {
|
|
inherit pre-pkg;
|
|
};
|
|
src = resolve-pre-src pre-src;
|
|
buildInputs = [ gerbil ] ++ gerbilInputs ++ buildInputs_;
|
|
|
|
postPatch = ''
|
|
set -e ;
|
|
${lib.optionalString (version-path != "")
|
|
''echo -e '(import :clan/versioning${builtins.concatStringsSep ""
|
|
(map (x: let px = x.passthru.pre-pkg; in
|
|
lib.optionalString (px.version-path != "")
|
|
" :${px.gerbil-package}/${px.version-path}")
|
|
gerbilInputs)
|
|
})\n(register-software "${softwareName}" "v${git-version}")\n' > "${version-path}.ss"''}
|
|
patchShebangs . ;
|
|
'';
|
|
|
|
postConfigure = ''
|
|
export GERBIL_BUILD_CORES=$NIX_BUILD_CORES
|
|
export GERBIL_PATH=$PWD/.build
|
|
export GERBIL_LOADPATH=${gerbilLoadPath (["$out"] ++ gerbilInputs)}
|
|
${pkgs.gambit-support.export-gambopt gambit-params}
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
${buildScript}
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/gerbil
|
|
cp -fa .build/* $out/gerbil/
|
|
if [[ -d $out/gerbil/bin ]] ; then
|
|
( cd $out/gerbil
|
|
bins=$(find ../gerbil/bin -type f)
|
|
if [[ -n $bins ]] ; then
|
|
( mkdir -p ../bin
|
|
cd ..
|
|
ln -s $bins bin
|
|
)
|
|
fi
|
|
)
|
|
fi
|
|
runHook postInstall
|
|
'';
|
|
|
|
dontFixup = true;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
if [[ -f unit-tests.ss ]] ; then
|
|
export GERBIL_APPLICATION_HOME=$PWD
|
|
./unit-tests.ss version
|
|
./unit-tests.ss
|
|
else
|
|
echo "No gerbil-utils style unit-tests.ss detected for ${pname} ${version}.";
|
|
fi
|
|
runHook postCheck
|
|
'';
|
|
|
|
doCheck = true;
|
|
};
|
|
}
|