mirror of https://cgit.krebsco.de/nix-writers
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
662 B
28 lines
662 B
{
|
|
description = "nix library extension, containing sophisticated script and code generator functions";
|
|
|
|
inputs = {
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
|
};
|
|
|
|
outputs = inputs @ {
|
|
self,
|
|
nixpkgs,
|
|
flake-utils,
|
|
}: let
|
|
nix-writersOverlay = import ./pkgs;
|
|
in
|
|
{
|
|
overlays = {
|
|
nix-writers = nix-writersOverlay;
|
|
default = nix-writersOverlay;
|
|
};
|
|
}
|
|
// flake-utils.lib.eachDefaultSystem (system: let
|
|
pkgs = import nixpkgs {inherit system;};
|
|
nix-writers = nix-writersOverlay pkgs pkgs;
|
|
in {
|
|
legacyPackages = nix-writers;
|
|
});
|
|
}
|
|
|