WIP: rewrite config #618

Draft
darkkirb wants to merge 345 commits from rewrite into main
2 changed files with 7 additions and 0 deletions
Showing only changes of commit 9bf1de6948 - Show all commits

View file

@ -222,6 +222,7 @@
art-lotte
art-lotte-bgs-nsfw
art-lotte-bgs-sfw
fish
package-updater
;
}

View file

@ -2,6 +2,12 @@ final: prev: {
art-lotte = final.callPackage ./art/lotte { };
art-lotte-bgs-nsfw = final.callPackage ./art/lotte/bgs-nsfw.nix { };
art-lotte-bgs-sfw = final.callPackage ./art/lotte/bgs-sfw.nix { };
fish = prev.fish.overrideAttrs {
postPatch = ''
substituteInPlace src/history.cpp --replace-fail 'vacuum = true' 'vacuum = false'
'';
doCheck = false;
};
kodi-joyn = final.kodiPackages.callPackage ./kodi/joyn { };
package-updater = final.callPackage ./updater.nix { };
}