generated from nix-community/nur-packages-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.nix
41 lines (37 loc) · 1.88 KB
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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> {} }:
with pkgs;
rec {
# The `lib`, `modules`, and `overlay` names are special
lib = import ./lib { inherit pkgs; }; # functions
modules = import ./modules; # NixOS modules
overlays = ./overlays; # nixpkgs overlays
k380-function-keys-conf = callPackage ./pkgs/k380-function-keys-conf.nix { };
knobkraft-orm = callPackage ./pkgs/knobkraft-orm.nix { };
realrtcw = callPackage ./pkgs/realrtcw.nix { };
re3 = callPackage ./pkgs/re3 {};
revc = callPackage ./pkgs/re3/revc.nix { inherit re3; };
bitwig-studio5 = callPackage ./pkgs/bitwig-studio5.nix {};
massdns = callPackage ./pkgs/massdns.nix {};
wireless-regdb = callPackage ./pkgs/wireless-regdb {};
edgevpn = callPackage ./pkgs/edgevpn {};
prometheus-nut-exporter = callPackage ./pkgs/prometheus-nut-exporter.nix {};
tun2socks = callPackage ./pkgs/tun2socks.nix {};
cockpit-machines = callPackage ./pkgs/cockpit/machines.nix {};
cockpit-client = callPackage ./pkgs/cockpit/client.nix {};
libvirt-dbus = callPackage ./pkgs/libvirt-dbus.nix {};
libidn = callPackage ./pkgs/libidn.nix {};
gitupdate = callPackage ./pkgs/gitupdate.nix {};
homer = callPackage ./pkgs/homer.nix {};
gtk3-nocsd = callPackage ./pkgs/gtk3-nocsd.nix {};
aml-upgrade-package-extract = callPackage ./pkgs/aml-upgrade-package-extract.nix {};
dsdt = callPackage ./pkgs/dsdt.nix;
ath10k-firmware = callPackage ./pkgs/ath10k-firmware.nix {};
cubesuite = callPackage ./pkgs/cubesuite.nix { wrapWine = pkgs.nur.repos.lucasew.packages.wrapWine or null; };
}