overlays-personal/pkgs/default.nix

34 lines
781 B
Nix
Raw Normal View History

2018-02-23 14:41:11 +01:00
# This overlay provides a set of customized pkgs.
2018-02-20 12:20:44 +01:00
self: super:
{
qutebrowserWE = super.qutebrowser.override { withWebEngineDefault = true; };
kitty = super.callPackage ./kitty {};
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";
};
2018-02-20 12:27:46 +01:00
vim-samae = super.callPackage ./vim {};
2018-02-20 12:20:44 +01:00
2018-02-23 14:41:11 +01:00
# Bug fixes:
ripmime = super.ripmime.override {
stdenv = super.overrideCC super.stdenv super.gcc6;
};
2018-02-25 16:55:47 +01:00
nixops = super.nixops.overrideDerivation (
old: {
patchPhase = ''
substituteInPlace nix/eval-machine-info.nix \
--replace 'system.nixosVersion' 'system.nixos.version'
'';
});
2018-02-20 12:20:44 +01:00
}