-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
34 lines (31 loc) · 1.06 KB
/
flake.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
{
description = ''
A reapkgs flake generated from the following Reapack indexes:
https://raw.githubusercontent.com/AntoineBalaine/perken-reaper-scripts/refs/heads/main/index.xml
https://raw.githubusercontent.com/Bird-Bird/ReaScript_Testing/main/index.xml
https://raw.githubusercontent.com/gwatcha/reaper-keys/refs/heads/master/index.xml
https://reapack.com/index.xml
Links:
Main repo: https://github.com/silvarc141/reapkgs
Flake generated for known ReaPack repos: https://github.com/silvarc141/reapkgs-known
'';
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs = {
self,
flake-utils,
nixpkgs,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;};
in rec {
packages =
{mkReapackPackage = import ./mk-reapack-package.nix;}
// import ./reapack-packages {
inherit (packages) mkReapackPackage;
inherit (pkgs) lib fetchurl stdenv;
};
});
}