2022-05-25 08:56:09 +00:00
|
|
|
# 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 `overlay` names are special
|
|
|
|
lib = import ./lib { inherit pkgs; }; # functions
|
|
|
|
modules = import ./modules; # NixOS modules
|
|
|
|
overlays = import ./overlays; # nixpkgs overlays
|
|
|
|
|
2022-05-25 19:35:06 +00:00
|
|
|
diskgraph = pkgs.callPackage ./pkgs/diskgraph { };
|
|
|
|
freqtop = pkgs.callPackage ./pkgs/freqtop { };
|
|
|
|
map = pkgs.callPackage ./pkgs/map { };
|
2022-05-27 09:25:42 +00:00
|
|
|
q = pkgs.callPackage ./pkgs/q { };
|
2022-07-20 07:32:05 +00:00
|
|
|
raspi-oled = pkgs.callPackage ./pkgs/raspi-oled { };
|
2022-05-25 09:31:14 +00:00
|
|
|
ripgrep-all = pkgs.callPackage ./pkgs/ripgrep-all {
|
|
|
|
inherit (pkgs.darwin.apple_sdk.frameworks) Security;
|
|
|
|
};
|
2022-05-25 08:56:09 +00:00
|
|
|
# some-qt5-package = pkgs.libsForQt5.callPackage ./pkgs/some-qt5-package { };
|
|
|
|
# ...
|
|
|
|
}
|