-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtop-level.nix
More file actions
24 lines (24 loc) · 1.25 KB
/
Copy pathtop-level.nix
File metadata and controls
24 lines (24 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# These will be added to the pkgs scope
final: prev: {
ansi2html = with final.python3Packages; toPythonApplication ansi2html;
exifread = with final.python3Packages; toPythonApplication exifread;
ghp-import = with final.python3Packages; toPythonApplication ghp-import;
glad = with final.python3Packages; toPythonApplication glad;
gpxinfo = with final.python3Packages; toPythonApplication gpxpy;
eradicate = with final.python3Packages; toPythonApplication eradicate;
fastep = with final.python3Packages; toPythonApplication fastentrypoints;
huey = with final.python3Packages; toPythonApplication huey;
libsoxr = final.soxr;
libmpg123 = final.mpg123.override {
libOnly = true;
withConplay = false;
};
pox = with final.python3Packages; toPythonApplication pox;
rnc2rng = with final.python3Packages; toPythonApplication rnc2rng;
scour = with final.python3Packages; toPythonApplication scour;
shortuuid = with final.python3Packages; toPythonApplication shortuuid;
tte = with final.python3Packages; toPythonApplication terminaltexteffects;
wakeonlan = with final.python3Packages; toPythonApplication wakeonlan;
yarn-berry_3 = final.yarn-berry.override { berryVersion = 3; };
yarn-berry_4 = final.yarn-berry.override { berryVersion = 4; };
}