summaryrefslogtreecommitdiff
path: root/pkgs/default.nix
blob: c29ed895f20393cf64237cee2262b9f41b77cd8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example' or (legacy) 'nix-build -A example'

{ pkgs ? (import ../nixpkgs.nix) { } }: let
  modrinth-app-unwrapped = pkgs.callPackage ./modrinth-app { };
in {
  mercury-browser = pkgs.callPackage ./mercury-browser { };
  dmenu-bluetooth = pkgs.callPackage ./dmenu-bluetooth { };
  neo-comic-mono-font = pkgs.callPackage ./neo-comic-mono-font { };
  modrinth-app = pkgs.callPackage ./modrinth-app/wrapper.nix {
    inherit modrinth-app-unwrapped;
  };
}
Software created with 💖