rename to dynix

This commit is contained in:
Qyriad 2026-02-02 11:34:52 +01:00
parent 80ff0b36cb
commit 8477c73067
7 changed files with 43 additions and 43 deletions

View file

@ -3,14 +3,14 @@
qpkgs ? let
src = fetchTarball "https://github.com/Qyriad/nur-packages/archive/main.tar.gz";
in import src { inherit pkgs; },
PKGNAME ? import ./default.nix { inherit pkgs qpkgs; },
dynix ? import ./default.nix { inherit pkgs qpkgs; },
}: let
inherit (pkgs) lib;
mkDevShell = PKGNAME: qpkgs.callPackage PKGNAME.mkDevShell { };
devShell = mkDevShell PKGNAME;
mkDevShell = dynix: qpkgs.callPackage dynix.mkDevShell { };
devShell = mkDevShell dynix;
byStdenv = lib.mapAttrs (lib.const mkDevShell) PKGNAME.byStdenv;
byStdenv = lib.mapAttrs (lib.const mkDevShell) dynix.byStdenv;
in devShell.overrideAttrs (prev: lib.recursiveUpdate prev {
passthru = { inherit byStdenv; };