overlays-personal/pkgs/default.nix
eeva 3a5b37a81b Move overriden kitty out of the way
But keep it as kitty 0.7 if anything happens
2018-03-11 12:02:35 +02:00

34 lines
783 B
Nix

# This overlay provides a set of customized pkgs.
self: super:
{
qutebrowserWE = super.qutebrowser.override { withWebEngineDefault = true; };
iosevka-hskl = let
tags = [
"ss08" # Use Pragmata Pro Style
"term" # Disable ligature/ligation
];
in
super.iosevka.override {
nodejs = super.nodejs-8_x;
design = tags;
set = "PPStyle";
};
vim-samae = super.callPackage ./vim {};
# Bug fixes:
kitty07 = super.callPackage ./kitty {};
ripmime = super.ripmime.override {
stdenv = super.overrideCC super.stdenv super.gcc6;
};
nixops = super.nixops.overrideDerivation (
old: {
patchPhase = ''
substituteInPlace nix/eval-machine-info.nix \
--replace 'system.nixosVersion' 'system.nixos.version'
'';
});
}