dotfiles/pkgs/default.nix

39 lines
1.1 KiB
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 {};
2018-03-10 18:50:14 +01:00
libinput-gestures = super.libinput-gestures.override { extraUtilsPath = [
self.xdotool self.python3
];};
2021-05-30 11:47:17 +02:00
gitFire = self.stdenv.mkDerivation {
src = self.fetchFromGitHub {
2017-08-15 17:55:19 +02:00
owner = "qw3rtman";
repo = "git-fire";
rev = "f485fffedbc4f719c55547be22ccd0080e592c9a";
sha256 = "1f7m1rypir85p33bgaggw5kgxjv7qy69zn1ci3b26rxr2a06fqwy";
};
name = "git-fire";
installPhase = ''
mkdir -p $out/bin/
install git-fire $out/bin/
'';
};
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;
};
})