nix/pkgs/default.nix

25 lines
641 B
Nix
Raw Normal View History

2022-02-01 22:52:30 +00:00
final: prev:
{
2022-01-28 14:25:01 +00:00
# keep sources this first
sources = prev.callPackage (import ./_sources/generated.nix) { };
# then, call packages with `final.callPackage`
}
2022-02-07 01:22:14 +00:00
let
inherit (final)
callPackage lib gnome;
in
{
# wrapWaterfox = callPackage ./waterfox/wrapper.nix { };
#
# waterfox-bin-unwrapped = callPackage ./waterfox-bin {
# inherit (gnome) adwaita-icon-theme;
# generated = import ./waterfox-bin/release_sources.nix;
# };
#
# waterfox-bin = wrapWaterfox waterfox-bin-unwrapped {
# applicationName = "waterfox";
# pname = "waterfox-bin";
# desktopName = "Waterfox";
# };
}