formatting goes brrr
This commit is contained in:
parent
4e8e8f0fed
commit
0f37f09199
17 changed files with 110 additions and 110 deletions
|
|
@ -1,5 +1,5 @@
|
|||
self: super: {
|
||||
mps-youtube = super.mps-youtube.overrideAttrs(old: rec {
|
||||
mps-youtube = super.mps-youtube.overrideAttrs (old: {
|
||||
src = super.fetchFromGitHub {
|
||||
owner = "louisabraham";
|
||||
repo = "mps-youtube";
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
self: super: {
|
||||
picom = super.picom.overrideAttrs(old: {
|
||||
picom = super.picom.overrideAttrs (old: {
|
||||
src = super.fetchFromGitHub {
|
||||
repo = "picom";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
self: super: {
|
||||
transcrypt = super.transcrypt.overrideAttrs(o: rec {
|
||||
transcrypt = super.transcrypt.overrideAttrs (old: rec {
|
||||
version = "2.1.0";
|
||||
|
||||
patches = [ ./patches/transcrypt.patch ];
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
self: super: {
|
||||
winetricks = super.winetricks.overrideAttrs(old: rec {
|
||||
winetricks = super.winetricks.overrideAttrs (old: rec {
|
||||
name = "winetricks-20210528-073e2db";
|
||||
src = super.fetchFromGitHub {
|
||||
repo = "winetricks";
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
self: super: {
|
||||
xorg = super.xorg // {
|
||||
xinit = super.xorg.xinit.overrideAttrs(o: {
|
||||
xinit = super.xorg.xinit.overrideAttrs (old: {
|
||||
# Some info:
|
||||
# - Make startx use $XAUTHORITY as server auth files instead of .serverauth.$$
|
||||
# - Make startx respect $XINITRC and $XSERVERRC
|
||||
patches = o.patches ++ [ ./patches/startx.patch ];
|
||||
patches = old.patches ++ [ ./patches/startx.patch ];
|
||||
});
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue