overlays-personal/pkgs/default.nix

68 lines
1.7 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:
{
2019-09-28 13:05:25 +02:00
iosevka-hskl = super.iosevka.override {
2019-09-25 10:10:54 +02:00
privateBuildPlan = {
family = "Iosevka Samae";
design = [
"ss08" # Use Pragmata Pro Style
"term" # Disable ligature/ligation
];
slants = {
upright = "normal";
italic = "italic";
oblique = "oblique";
};
2019-04-30 17:02:06 +02:00
};
2019-09-25 10:10:54 +02:00
set = "Samae";
};
2019-04-30 17:02:06 +02:00
2019-07-18 21:07:39 +02:00
wineNoGS = super.wineStaging.override { gstreamerSupport = false; };
2020-02-09 13:38:35 +01:00
surge-samae = super.callPackage ./surge {};
2020-02-09 10:26:45 +01:00
2020-02-09 17:15:44 +01:00
carla-samae = super.qt5.callPackage ./carla {};
2020-02-09 16:51:30 +01:00
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 {};
2020-02-24 13:36:11 +01:00
mopidy-mpd-samae = super.callPackage ./mopidy-mpd {};
2021-01-01 10:39:15 +01:00
vcv-rack-samae = super.callPackage ./vcv-rack {};
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
2020-07-25 15:10:46 +02:00
squeezer = super.callPackage ./squeezer {};
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 &
'';
2020-08-05 18:47:17 +02:00
2020-08-05 19:22:44 +02:00
myAt = super.writeScriptBin "at" ''
2020-08-05 18:47:17 +02:00
echo "Running cmd in $(( $(date -d "$1" +%s) - $(date +%s) )) seconds"
sleep $(( $(date -d "$1" +%s) - $(date +%s) ))
shift 1
eval "$@"
'';
2018-02-20 12:20:44 +01:00
}