31 lines
1.4 KiB
Nix
31 lines
1.4 KiB
Nix
{ pkgs, ... }: with pkgs; [
|
|
(final: prevPkgs: {
|
|
winvista-cursors = callPackage ./winvista-cursors.nix {};
|
|
win7-cursors = callPackage ./win7-cursors.nix {};
|
|
winxp-cursors = callPackage ./winxp-cursors.nix {};
|
|
winxp-icons = callPackage ./winxp-icons.nix {};
|
|
oxylite-icon-theme = callPackage ./oxylite-icon-theme.nix {};
|
|
e17gtk-revolved = callPackage ./e17gtk-revolved.nix {};
|
|
darkcold-gtk-theme = callPackage ./darkcold-gtk-theme.nix {};
|
|
arc-mono-gtk-theme = callPackage ./arc-mono-gtk-theme.nix {};
|
|
vim-darcula-theme = callPackage ./vim-darcula-theme.nix {};
|
|
sddm-i3-theme = callPackage ./sddm-i3-theme.nix {};
|
|
ericw-tools-latest = callPackage ./ericw-tools-latest.nix {};
|
|
i3status = prevPkgs.i3status.overrideAttrs (_: { patches = [ ../files/i3status.patch ]; });
|
|
alacritty-sixel = callPackage ./alacritty-sixel.nix {};
|
|
vkquake = prevPkgs.vkquake.overrideAttrs (prev: {
|
|
version = "1.31.1";
|
|
src = pkgs.fetchFromGitHub {
|
|
inherit (prev.src) owner repo;
|
|
rev = "38a9771d56cd2427c44724a2655b95281e29ba2d";
|
|
sha256 = "sha256-rOzQMeSmnHZl4v0uWWqwp1yfnUqIuP18ogRn4DimKt4=";
|
|
};
|
|
sourceRoot = null;
|
|
nativeBuildInputs = prev.nativeBuildInputs ++ [ pkgs.glslang ];
|
|
buildPhase = ''
|
|
cd Quake
|
|
make -j6 DO_USERDIRS=1 prefix=$out bindir=$out/bin
|
|
'';
|
|
});
|
|
})
|
|
]
|