dotfiles/pkgs/default.nix

23 lines
608 B
Nix
Raw Normal View History

2021-05-30 11:47:17 +02:00
(self: super: {
2017-08-15 17:55:19 +02:00
2021-05-30 11:47:17 +02:00
yori-cc = super.callPackage ./yori-cc.nix { };
ftb = super.callPackage ./ftb.nix {};
pyroscope = super.callPackage ./pyroscope {};
#lejos = super.callPackage ../pkgs/lejos.nix {};
2017-08-15 17:55:19 +02:00
2021-05-30 11:47:17 +02:00
weiightminder = super.callPackage (builtins.fetchGit {
2017-08-15 17:55:19 +02:00
url = https://gist.github.com/yorickvP/229d21a7da13c9c514dbd26147822641;
rev = "9749ef4d83c0078bc0248215ee882d7124827cf3";
}) {};
2021-05-30 11:47:17 +02:00
yscripts = super.callPackage ../bin {};
factorio = super.factorio.override {
releaseType = "alpha";
username = "yorickvp";
token = (import ../nixos/secrets.nix).factorio_token;
};
})