summaryrefslogtreecommitdiff
path: root/default.nix
blob: 1552309641562abec215e178ba8a1ab29a4175ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ system ? builtins.currentSystem, pkgs ? import <nixpkgs> { inherit system; }, ... }:

let
  callPackage = pkgs.lib.callPackageWith (pkgs // custom);

  custom = {
    custom-neovim = callPackage ./pkgs/custom-neovim { };

    oomox-gtk-theme            = t : callPackage ./pkgs/oomox-gtk-theme { theme = t; };
    oomox-archdroid-icon-theme = c : callPackage ./pkgs/oomox-archdroid-icon-theme { color = c; };

    katex-wrapper = callPackage ./pkgs/katex-wrapper { };

    input-xslt  = callPackage ./pkgs/xslt/input-xslt  { };
    build-xslt  = callPackage ./pkgs/xslt/build-xslt  { };
    static-xslt = callPackage ./pkgs/xslt/static-xslt { };
    make-xslt   = callPackage ./pkgs/xslt/make-xslt   { };
  };
in custom