fmt
This commit is contained in:
parent
51b1b49903
commit
4abd45cc23
@ -19,7 +19,7 @@ let
|
||||
hash = "sha256-bqxWFP3/aw7kRoD6ictbFcjzijktHvh4AgWAXBIODW8=";
|
||||
};
|
||||
});
|
||||
harec' = stdenv.mkDerivation (finalAttrs: {
|
||||
harec' = stdenv.mkDerivation (_: {
|
||||
pname = "harec";
|
||||
version = "unstable-2023-10-22";
|
||||
|
||||
@ -63,7 +63,7 @@ let
|
||||
};
|
||||
});
|
||||
|
||||
hare' = stdenv.mkDerivation (finalAttrs: {
|
||||
hare' = stdenv.mkDerivation (_: {
|
||||
pname = "hare";
|
||||
version = "unstable-2023-10-23";
|
||||
|
||||
|
@ -1,10 +1,9 @@
|
||||
addHarepath () {
|
||||
for haredir in third-party stdlib; do
|
||||
if [[ -d "$1/src/hare/$haredir" ]]; then
|
||||
addToSearchPath HAREPATH "$1/src/hare/$haredir"
|
||||
fi
|
||||
done
|
||||
addHarepath() {
|
||||
for haredir in third-party stdlib; do
|
||||
if [[ -d "$1/src/hare/$haredir" ]]; then
|
||||
addToSearchPath HAREPATH "$1/src/hare/$haredir"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
addEnvHooks "$hostOffset" addHarepath
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user