rix101/pkgs/default.nix

15 lines
557 B
Nix
Raw Normal View History

# 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'
2023-02-19 12:54:29 +01:00
{ pkgs ? (import ../nixpkgs.nix) { }
, ...
}: {
# example = pkgs.callPackage ./example { };
2023-04-17 13:51:03 +02:00
advcp = pkgs.callPackage ./advcp { };
fennel-language-server = pkgs.callPackage ./fennel-language-server { };
parinfer-rust = pkgs.callPackage ./parinfer-rust { };
swww = pkgs.callPackage ./swww { };
vim-fmi-cli = pkgs.callPackage ./vim-fmi-cli { };
2023-05-26 20:16:52 +02:00
win2xcur = pkgs.callPackage ./win2xcur { };
}