feat(third_party/guile): Override guile to version 3.0.0
Lets try this thing out!
This commit is contained in:
parent
0a3613996f
commit
1f68644dc9
4 changed files with 27 additions and 1 deletions
|
@ -84,6 +84,7 @@ in pkgs.lib.fix(self: {
|
|||
lieer
|
||||
ops.kontemplate
|
||||
third_party.git
|
||||
third_party.guile
|
||||
tools.emacs
|
||||
]) ++
|
||||
|
||||
|
|
2
third_party/default.nix
vendored
2
third_party/default.nix
vendored
|
@ -108,7 +108,7 @@ in exposed // {
|
|||
|
||||
# Packages to be overridden
|
||||
originals = {
|
||||
inherit (nixpkgs) git notmuch;
|
||||
inherit (nixpkgs) git guile notmuch;
|
||||
};
|
||||
|
||||
# Make NixOS available
|
||||
|
|
12
third_party/guile/default.nix
vendored
Normal file
12
third_party/guile/default.nix
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
# Override Guile to version 3.0.0
|
||||
{ pkgs, ... }:
|
||||
|
||||
pkgs.third_party.originals.guile.overrideAttrs(old: rec {
|
||||
name = "guile-${version}";
|
||||
version = "3.0.0";
|
||||
|
||||
src = pkgs.third_party.fetchurl {
|
||||
url = "mirror://gnu/guile/${name}.tar.xz";
|
||||
sha256 = "0x8ca6q1qdmk29lh12gj6ngvgn7kp79w42rxfgwrpxm9jmjqs4y9";
|
||||
};
|
||||
})
|
13
third_party/guile/setup-hook-3.0.sh
vendored
Normal file
13
third_party/guile/setup-hook-3.0.sh
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
addGuileLibPath () {
|
||||
if test -d "$1/share/guile/site/3.0"
|
||||
then
|
||||
export GUILE_LOAD_PATH="${GUILE_LOAD_PATH}${GUILE_LOAD_PATH:+:}$1/share/guile/site/3.0"
|
||||
export GUILE_LOAD_COMPILED_PATH="${GUILE_LOAD_COMPILED_PATH}${GUILE_LOAD_COMPILED_PATH:+:}$1/share/guile/site/3.0"
|
||||
elif test -d "$1/share/guile/site"
|
||||
then
|
||||
export GUILE_LOAD_PATH="${GUILE_LOAD_PATH}${GUILE_LOAD_PATH:+:}$1/share/guile/site"
|
||||
export GUILE_LOAD_COMPILED_PATH="${GUILE_LOAD_COMPILED_PATH}${GUILE_LOAD_COMPILED_PATH:+:}$1/share/guile/site"
|
||||
fi
|
||||
}
|
||||
|
||||
addEnvHooks "$hostOffset" addGuileLibPath
|
Loading…
Reference in a new issue