irs/flake.nix

28 lines
588 B
Nix
Raw Normal View History

2023-12-23 01:27:07 +01:00
{
description = "A few random scripts";
2023-10-20 14:19:31 +02:00
inputs = {
2024-07-23 11:20:44 +02:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
2023-10-20 14:19:31 +02:00
};
2025-06-18 09:19:09 +02:00
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
packages = rec {
default = irs;
irs = pkgs.callPackage ./irs.nix { };
noise = pkgs.callPackage ./noise.nix { };
2023-12-23 01:27:07 +01:00
};
formatter = pkgs.nixpkgs-fmt;
2025-06-18 09:19:09 +02:00
}
);
2023-08-16 18:05:22 +02:00
}