9 lines
347 B
Nix
9 lines
347 B
Nix
# This file can be used as an overlay for non-flake based systems
|
|
self: super: {
|
|
# vim: set et,sw=4
|
|
performous-composer = self.libsForQt5.callPackage ./performous-composer.nix {};
|
|
open-simh = self.callPackage ./open-simh.nix {};
|
|
linux_6_5_3 = self.callPackage ./linux_653.nix {};
|
|
linuxPackages_6_5_3 = self.linuxPackagesFor linux_6_5_3;
|
|
}
|