overlays-personal/pkgs/default.nix

56 lines
1.5 KiB
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 {
design = tags;
set = "PPStyle";
};
2019-07-18 21:07:39 +02:00
wineNoGS = super.wineStaging.override { gstreamerSupport = false; };
2018-02-20 12:27:46 +01:00
vim-samae = super.callPackage ./vim {};
2018-02-20 12:20:44 +01:00
2019-05-14 20:54:45 +02:00
reaper-samae = super.callPackage ./reaper {};
2018-02-23 14:41:11 +01:00
# Bug fixes:
2019-04-30 17:02:29 +02:00
# VCVRack has a bug when used with Xmonad that makes the UI
# crash almost immediately There's a workaround documented here
# (https://github.com/VCVRack/Rack/issues/478#issuecomment-456174702) and it
# requires applying a patch on the source before building.
vcv-rack-xmonad = super.callPackage ./vcv-rack {};
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 {};
2019-07-13 10:05:12 +02:00
victor-mono = super.callPackage ./victor-mono {};
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
2019-06-19 19:11:55 +02:00
minitube = super.libsForQt5.callPackage ./minitube {};
2018-06-01 09:21:56 +02:00
# Originally from Mats Rauhala ®2018
copy = super.writeScriptBin "copy" ''
function clean() {
sleep 10
2019-06-03 08:11:50 +02:00
${super.libnotify}/bin/notify-send -u low 'Clipboard cleaned'
2018-06-01 09:21:56 +02:00
${super.xclip}/bin/xclip -sel clipboard -i /dev/null
}
${super.xclip}/bin/xclip -sel clipboard < /dev/stdin
2019-06-03 08:11:50 +02:00
${super.libnotify}/bin/notify-send -u low -t 10000 'Clipboard set'
2018-06-01 09:21:56 +02:00
clean &
'';
2018-02-20 12:20:44 +01:00
}