overlays-personal/pkgs/default.nix

44 lines
938 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; };
iosevka-hskl = let
tags = [
"ss08" # Use Pragmata Pro Style
"term" # Disable ligature/ligation
];
in
2019-04-30 17:02:06 +02:00
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:
2018-04-20 20:26:44 +02:00
2018-04-20 20:35:19 +02:00
scientifica-font = super.callPackage ./scientifica-font {};
2018-06-24 18:19:07 +02:00
curie-font = super.callPackage ./curie-font {};
2018-04-20 20:26:44 +02:00
2018-02-23 14:41:11 +01:00
ripmime = super.ripmime.override {
stdenv = super.overrideCC super.stdenv super.gcc6;
};
2019-04-30 17:02:06 +02:00
2018-06-01 09:21:56 +02:00
# Originally from Mats Rauhala ®2018
copy = super.writeScriptBin "copy" ''
function clean() {
sleep 10
echo cleaning
${super.xclip}/bin/xclip -sel clipboard -i /dev/null
}
${super.xclip}/bin/xclip -sel clipboard < /dev/stdin
clean &
'';
2018-02-20 12:20:44 +01:00
}