nixpkgs/default.nix

20 lines
411 B
Nix
Raw Normal View History

2020-02-01 17:09:13 +00:00
{ system ? builtins.currentSystem }:
let
pkgs = import <nixpkgs> { inherit system; };
callPackage = pkgs.lib.callPackageWith (pkgs // self);
2020-02-01 17:27:19 +00:00
x = callPackage ./pkgs/x { };
self = {
MoonPlus = callPackage ./pkgs/moonplus { };
appsluggr = x.appsluggr;
johaus = x.johaus;
license = x.license;
mainsanow = x.mainsanow;
prefix = x.prefix;
quickserv = x.quickserv;
};
2020-02-01 17:09:13 +00:00
in self