-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
31 lines (30 loc) · 1.61 KB
/
Copy pathflake.nix
File metadata and controls
31 lines (30 loc) · 1.61 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
25
26
27
28
29
30
31
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
{
packages = let
callPackage = file: args: import file (args // { pkgs = nixpkgs.legacyPackages.${system}; system = system; });
in {
judge = callPackage ./judge.nix {};
judge-minimal = callPackage ./judge.nix { minimal = true; };
cyaron = callPackage ./cyaron.nix {};
xeger = callPackage ./xeger.nix {};
mongodb = callPackage ./mongodb.nix {};
gcc = callPackage ./gccWithCache.nix {};
mongodb8 = callPackage ./mongodb.nix { version = "8.2.3"; inherit system; };
mongodb7 = callPackage ./mongodb.nix { version = "7.0.28"; inherit system; };
mongodb6 = callPackage ./mongodb.nix { version = "6.0.27"; inherit system; };
mongodb5 = callPackage ./mongodb.nix { version = "5.0.32"; inherit system; };
mongodb4 = callPackage ./mongodb.nix { version = "4.4.30"; inherit system; };
mongodb8-cn = callPackage ./mongodb.nix { version = "8.2.3"; inherit system; };
mongodb7-cn = callPackage ./mongodb.nix { version = "7.0.28"; inherit system; };
mongodb6-cn = callPackage ./mongodb.nix { version = "6.0.27"; inherit system; };
mongodb5-cn = callPackage ./mongodb.nix { version = "5.0.32"; inherit system; };
mongodb4-cn = callPackage ./mongodb.nix { version = "4.4.30"; inherit system; };
};
mongodb = import ./mongodb.nix;
}
);
}