nix/pkgs/default.nix

40 lines
1.6 KiB
Nix
Raw Normal View History

2024-09-17 20:01:58 +02:00
{ inputs, pkgs, ... }: with pkgs; [
2024-07-12 00:13:52 +02:00
(final: prevPkgs: {
2024-07-10 15:01:17 +02:00
win7-cursors = callPackage ./win7-cursors.nix {};
sddm-i3-theme = callPackage ./sddm-i3-theme.nix {};
ericw-tools-latest = callPackage ./ericw-tools-latest.nix {};
2024-09-19 19:47:29 +02:00
godot4-mono = callPackage ./godot4-mono.nix {};
2024-07-24 19:01:46 +02:00
alacritty-sixel = callPackage ./alacritty-sixel.nix {};
2024-09-17 16:58:49 +02:00
i3status = prevPkgs.i3status.overrideAttrs (_: { patches = [ ../files/i3status-format-fix.patch ]; });
flameshot = prevPkgs.flameshot.overrideAttrs (_: { patches = [ ../files/flameshot-0x0-upload.patch ]; });
2024-08-29 23:13:04 +02:00
schildichat-web = callPackage ./schildi/schildichat-web.nix {};
schildichat-desktop = callPackage ./schildi/schildichat-desktop.nix {};
vkquake_ = prevPkgs.vkquake.overrideAttrs (prev: {
2024-07-12 00:13:52 +02:00
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
2024-09-19 19:47:29 +02:00
make -j6 DO_USERDIRS=1 prefix=$out bindir=$out/bin
2024-07-12 00:13:52 +02:00
'';
});
2024-08-21 20:18:57 +02:00
protontricks = prevPkgs.protontricks.overrideAttrs (prev: {
src = pkgs.fetchFromGitHub {
inherit (prev.src) owner repo;
rev = "f7b1fa33b0438dbd72f7222703f8442e40edc510";
sha256 = "sha256-t794WEMJx/JNX3gTMHfgquFWB7yXkleW07+QURm1NPM=";
};
});
2024-09-17 20:01:58 +02:00
zed-editor = (inputs.zed.packages.${system}.zed-editor.overrideAttrs {
patches = [
../files/zed-no-rounded-corners.patch
];
});
2024-06-13 15:38:40 +02:00
})
]