All checks were successful
Build and populate cache / tests (<YOUR_CACHIX_NAME>, nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixos-25.05.tar.gz, https://git.gliroid.com/Pupyrinth/nur-packages) (push) Successful in 1m44s
Build and populate cache / tests (<YOUR_CACHIX_NAME>, nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixos-unstable.tar.gz, https://git.gliroid.com/Pupyrinth/nur-packages) (push) Successful in 1m44s
Build and populate cache / tests (<YOUR_CACHIX_NAME>, nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixpkgs-unstable.tar.gz, https://git.gliroid.com/Pupyrinth/nur-packages) (push) Successful in 1m24s
21 lines
772 B
Nix
21 lines
772 B
Nix
# This file describes your repository contents.
|
|
# It should return a set of nix derivations
|
|
# and optionally the special attributes `lib`, `modules` and `overlays`.
|
|
# It should NOT import <nixpkgs>. Instead, you should take pkgs as an argument.
|
|
# Having pkgs default to <nixpkgs> is fine though, and it lets you use short
|
|
# commands such as:
|
|
# nix-build -A mypackage
|
|
|
|
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
{
|
|
# The `lib`, `modules`, and `overlays` names are special
|
|
lib = import ./lib { inherit pkgs; }; # functions
|
|
modules = import ./modules; # NixOS modules
|
|
overlays = import ./overlays; # nixpkgs overlays
|
|
|
|
mcreator-2025_2 = pkgs.callPackage ./pkgs/mcreator-2025_2 { };
|
|
# some-qt5-package = pkgs.libsForQt5.callPackage ./pkgs/some-qt5-package { };
|
|
# ...
|
|
}
|