generated from nix-community/nur-packages-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
183 lines (156 loc) · 7.21 KB
/
default.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# This file describes your repository contents.
# It should return a set of nix derivations
# and optionally the special attributes `lib`, `modules` and `overlays`.
# It should NOT import <nixpkgs>. Instead, you should take pkgs as an argument.
# Having pkgs default to <nixpkgs> is fine though, and it lets you use short
# commands such as:
# nix-build -A mypackage
{ pkgs ? import <nixpkgs> {} }:
let result = pkgs.lib.makeScope pkgs.newScope (self: let
inherit (self) callPackage;
in {
# The `lib`, `modules`, and `overlays` names are special
# Renamed here to avoid shadowing their builtin nixpkgs counterparts in callPackage
myLib = import ./lib { inherit pkgs; }; # functions
myModules = import ./modules; # NixOS modules
myOverlays = import ./overlays; # nixpkgs overlays
_Read-Me-link = pkgs.runCommandLocal "___Read_Me___" rec {
message = ''
This is not a real package.
It's just here to add a Read Me link for this repo on the NUR site.
See <${meta.homepage}> for the actual Read Me.
Or for the local copy: ${toString ./README.md}
'';
meta = {
homepage = "https://github.com/Rhys-T/nur-packages#readme";
knownVulnerabilities = [message];
};
} ''
echo -E "$message" >&2
exit 1
'';
maintainers = import ./maintainers.nix;
lix-game-packages = callPackage ./pkgs/lix-game/packages.nix {};
lix-game = self.lix-game-packages.game;
lix-game-server = self.lix-game-packages.server;
lix-game-libpng = if pkgs.hostPlatform.isDarwin then (self.lix-game-packages.overrideScope (self: super: {
convertImagesToTrueColor = false;
})).game else self.lix-game;
lix-game-issue-431 = if pkgs.hostPlatform.isDarwin then (self.lix-game-packages.overrideScope (self: super: {
convertImagesToTrueColor = false;
disableNativeImageLoader = false;
})).game else self.lix-game;
lix-game-CIImage = if pkgs.hostPlatform.isDarwin then (self.lix-game-packages.overrideScope (self: super: {
convertImagesToTrueColor = false;
disableNativeImageLoader = "CIImage";
})).game else self.lix-game;
_ciOnly.lix-game = pkgs.lib.recurseIntoAttrs {
assets = (self.lix-game-packages.overrideScope (self: super: {
convertImagesToTrueColor = false;
})).assets;
assets-PNG32 = (self.lix-game-packages.overrideScope (self: super: {
convertImagesToTrueColor = true;
})).assets;
inherit (self.lix-game-packages) highResTitleScreen;
};
xscorch = callPackage ./pkgs/xscorch {};
pce = callPackage ./pkgs/pce {};
pce-with-unfree-roms = self.pce.override { enableUnfreeROMs = true; };
pce-snapshot = callPackage ./pkgs/pce/snapshot.nix {};
bubbros = callPackage ./pkgs/bubbros {};
flatzebra = callPackage ./pkgs/flatzebra {};
burgerspace = callPackage ./pkgs/flatzebra/burgerspace.nix {};
hfsutils = callPackage ./pkgs/hfsutils {};
hfsutils-tk = self.hfsutils.override { enableTclTk = true; };
minivmac36 = callPackage ./pkgs/minivmac/36.nix {};
minivmac37 = callPackage ./pkgs/minivmac/37.nix {};
minivmac = self.minivmac36;
minivmac-unstable = self.minivmac37;
minivmac-ii = self.minivmac.override { macModel = "II"; };
minivmac-ii-unstable = self.minivmac-unstable.override { macModel = "II"; };
mame = callPackage (pkgs.callPackage ./pkgs/mame {}) {};
mame-metal = self.mame.override { darwinMinVersion = "11.0"; };
hbmame = callPackage ./pkgs/mame/hbmame.nix {};
hbmame-metal = self.hbmame.override { mame = self.mame-metal; };
pacifi3d = callPackage ./pkgs/pacifi3d {};
pacifi3d-mame = self.pacifi3d.override { romsFromMAME = self.mame; };
pacifi3d-hbmame = self.pacifi3d.override { romsFromMAME = self.hbmame; };
_ciOnly.pacifi3d-rom-xmls = pkgs.lib.recurseIntoAttrs {
mame = self.pacifi3d-mame.romsFromXML;
hbmame = self.pacifi3d-hbmame.romsFromXML;
};
konify = callPackage ./pkgs/konify {};
asciiportal = callPackage ./pkgs/asciiportal {};
asciiportal-git = callPackage ./pkgs/asciiportal/git.nix {};
xorcurses = callPackage ./pkgs/xorcurses {};
xorcurses-git = callPackage ./pkgs/xorcurses/git.nix {};
powder = callPackage ./pkgs/powder {};
xinvaders3d = callPackage ./pkgs/xinvaders3d {};
icbm3d = pkgs.icbm3d.overrideAttrs (old: {
postPatch = (old.postPatch or "") + ''
substituteInPlace makefile --replace-fail 'CC=' '#CC='
substituteInPlace randnum.c --replace-fail 'stdio.h' 'stdlib.h'
sed -i '1i\
#include <string.h>' text.c
'';
meta = old.meta // {
description = "${old.meta.description or "icbm3d"} (fixed for macOS/Darwin)";
platforms = old.meta.platforms ++ pkgs.lib.platforms.darwin;
};
});
xgalagapp = pkgs.xgalagapp.overrideAttrs (old: {
postPatch = (old.postPatch or "") + ''
substituteInPlace Makefile --replace-fail 'CXX =' '#CXX ='
'';
meta = old.meta // {
description = "${old.meta.description or "xgalagapp"} (fixed for macOS/Darwin)";
platforms = old.meta.platforms ++ pkgs.lib.platforms.darwin;
};
});
fpc = let
inherit (pkgs) fpc lib;
needsFix =
pkgs.hostPlatform.isDarwin &&
!(lib.hasInfix "-syslibroot $SDKROOT" (fpc.preConfigure or ""))
;
in lib.addMetaAttrs ({
description = "${fpc.meta.description or "fpc"} (fixed for macOS/Darwin)";
}) (if needsFix then fpc.overrideAttrs (old: {
preConfigure = ''
NIX_LDFLAGS="-syslibroot $SDKROOT -L${lib.getLib pkgs.libiconv}/lib"
'' + (old.preConfigure or "");
}) else fpc);
drl-packages = callPackage ./pkgs/drl/packages.nix {};
inherit (self.drl-packages) drl drl-hq drl-lq;
man2html = callPackage ./pkgs/man2html {};
# qemu-screamer-nixpkgs = callPackage ./pkgs/qemu-screamer/nixpkgs.nix {};
qemu-screamer = let
darwinSdkVersion = "11.0";
stdenv = if pkgs.hostPlatform.isDarwin && pkgs.lib.versionOlder pkgs.stdenv.hostPlatform.darwinSdkVersion darwinSdkVersion then
pkgs.overrideSDK pkgs.stdenv {
inherit darwinSdkVersion;
}
else
pkgs.stdenv
;
in callPackage ./pkgs/qemu-screamer {
inherit stdenv;
inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices Cocoa Hypervisor vmnet;
inherit (pkgs.darwin.stubs) rez setfile;
inherit (pkgs.darwin) sigtool;
};
_ciOnly.mac = pkgs.lib.optionalAttrs pkgs.hostPlatform.isDarwin (pkgs.lib.recurseIntoAttrs {
wine64Full = pkgs.wine64Packages.full;
});
# _ciOnly.dev = pkgs.lib.optionalAttrs (pkgs.hostPlatform.system == "x86_64-darwin") (pkgs.lib.recurseIntoAttrs {
# checkpoint = pkgs.lib.recurseIntoAttrs (pkgs.lib.mapAttrs (k: pkgs.checkpointBuildTools.prepareCheckpointBuild) {
# inherit (self)
# # hbmame
# ;
# });
# });
}); in result // {
lib = result.myLib;
modules = result.myModules;
overlays = result.myOverlays;
}