-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoverlays.nix
70 lines (70 loc) · 1.51 KB
/
overlays.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[
(final: prev: rec {
clickgen = prev.callPackage ./pkgs/clickgen.nix {
inherit (prev.python3Packages)
buildPythonPackage
pythonOlder
pytestCheckHook
pillow
python
toml
numpy
attrs
pyyaml
;
inherit (prev.xorg) libXcursor libX11;
};
breezex-cursor = prev.callPackage ./pkgs/breezex-cursor {
inherit clickgen;
};
syncstorage-rs = prev.callPackage ./pkgs/syncstorage-rs.nix {
inherit (prev)
fetchFromGitHub
rustPlatform
pkg-config
python3
cmake
libmysqlclient
makeBinaryWrapper
;
};
createDir = prev.callPackage ./pkgs/utils/createDir.nix { };
# Tempoprary fix for neovide in nixos-unstable
neovide = prev.callPackage ./pkgs/tempfix-neovide {
inherit (prev)
rustPlatform
clangStdenv
fetchFromGitHub
linkFarm
fetchgit
runCommand
gn
neovim
ninja
makeWrapper
pkg-config
python3
removeReferencesTo
apple-sdk_11
SDL2
fontconfig
xorg
stdenv
libglvnd
libxkbcommon
wayland
;
};
kanata = prev.callPackage ./pkgs/kanata.nix {
inherit (prev) fetchFromGitHub rustPlatform;
};
geode-cli = prev.callPackage ./pkgs/geode-cli.nix {
inherit (prev)
fetchFromGitHub
rustPlatform
pkg-config
openssl
;
};
})
]