-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathflake.nix
More file actions
24 lines (23 loc) · 737 Bytes
/
flake.nix
File metadata and controls
24 lines (23 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
description = "CEaShell (pronounced like \"Seashell\") is a new shell for the TI-84 Plus CE.";
inputs = {
toolchain.url = "github:myclevorname/flake";
flake-utils.url = "github:numtide/flake-utils";
app_tools = {
url = "github:tiny-hacker/app_tools";
flake = false;
};
};
outputs = { self, toolchain, app_tools, flake-utils }:
flake-utils.eachSystem [ "x86_64-linux" "x86_64-darwin" ] (system: {
packages.default = toolchain.packages.x86_64-linux.mkDerivation {
pname = "CEaShell";
version = "0.0.1";
postUnpack = ''
cp -r ${app_tools}/ $sourceRoot/app_tools
chmod -R +w $sourceRoot/app_tools
'';
src = self;
};
});
}