summaryrefslogtreecommitdiff
path: root/default.nix
blob: ff1439bc6651c7b65be1e14d52c95b75aaae1883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ system ? builtins.currentSystem }:

let
  pkgs = import <nixpkgs> { inherit system; };

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

  custom = {
    custom-vim    = callPackage ./pkgs/custom-vim    { };
    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