Compare commits

...

2 commits

Author SHA1 Message Date
krizej
c50e820615 latest vkquake 2024-07-12 00:13:52 +02:00
krizej
57f6b72dd0 unrar 2024-07-12 00:13:40 +02:00
2 changed files with 17 additions and 2 deletions

View file

@ -1,5 +1,5 @@
{ pkgs, ... }: with pkgs; [ { pkgs, ... }: with pkgs; [
(final: prev: { (final: prevPkgs: {
winvista-cursors = callPackage ./winvista-cursors.nix {}; winvista-cursors = callPackage ./winvista-cursors.nix {};
win7-cursors = callPackage ./win7-cursors.nix {}; win7-cursors = callPackage ./win7-cursors.nix {};
winxp-cursors = callPackage ./winxp-cursors.nix {}; winxp-cursors = callPackage ./winxp-cursors.nix {};
@ -11,6 +11,20 @@
vim-darcula-theme = callPackage ./vim-darcula-theme.nix {}; vim-darcula-theme = callPackage ./vim-darcula-theme.nix {};
sddm-i3-theme = callPackage ./sddm-i3-theme.nix {}; sddm-i3-theme = callPackage ./sddm-i3-theme.nix {};
ericw-tools-latest = callPackage ./ericw-tools-latest.nix {}; ericw-tools-latest = callPackage ./ericw-tools-latest.nix {};
i3status = prev.i3status.overrideAttrs (_: { patches = [ ../files/i3status.patch ]; }); i3status = prevPkgs.i3status.overrideAttrs (_: { patches = [ ../files/i3status.patch ]; });
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
'';
});
}) })
] ]

View file

@ -25,6 +25,7 @@
btop btop
zip zip
unzip unzip
unrar
wget wget
gcc gcc
gnumake gnumake