-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into staging-next
- Loading branch information
Showing
69 changed files
with
5,100 additions
and
1,576 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8297,6 +8297,13 @@ | |
githubId = 201997; | ||
name = "Eric Seidel"; | ||
}; | ||
griffi-gh = { | ||
name = "Alex Prasol"; | ||
email = "[email protected]"; | ||
matrix = "@voxel:nyanbinary.rs"; | ||
github = "griffi-gh"; | ||
githubId = 45996170; | ||
}; | ||
grimmauld = { | ||
name = "Sören Bender"; | ||
email = "[email protected]"; | ||
|
@@ -11298,6 +11305,12 @@ | |
github = "keenanweaver"; | ||
githubId = 37268985; | ||
}; | ||
kekschen = { | ||
email = "[email protected]"; | ||
github = "kek5chen"; | ||
githubId = 52585984; | ||
name = "Kek5chen"; | ||
}; | ||
keksgesicht = { | ||
name = "Jan Braun"; | ||
email = "[email protected]"; | ||
|
6 changes: 2 additions & 4 deletions
6
nixos/doc/manual/installation/installing-virtualbox-guest.section.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# To use this for hacking of your Yi config file, drop into a shell | ||
# with env attribute. | ||
{ | ||
lib, | ||
stdenv, | ||
makeWrapper, | ||
haskellPackages, | ||
extraPackages ? (s: [ ]), | ||
}: | ||
let | ||
yiEnv = haskellPackages.ghcWithPackages (self: [ self.yi ] ++ extraPackages self); | ||
in | ||
stdenv.mkDerivation { | ||
pname = "yi-custom"; | ||
dontUnpack = true; | ||
nativeBuildInputs = [ makeWrapper ]; | ||
|
||
buildCommand = '' | ||
mkdir -p $out/bin | ||
makeWrapper ${haskellPackages.yi}/bin/yi $out/bin/yi \ | ||
--set NIX_GHC ${yiEnv}/bin/ghc | ||
''; | ||
|
||
# For hacking purposes | ||
passthru.env = yiEnv; | ||
|
||
inherit (haskellPackages.yi) meta version; | ||
} |
Oops, something went wrong.