overlays-personal/pkgs/default.nix

66 lines
1.6 KiB
Nix
Raw Normal View History

2018-02-23 15:41:11 +02:00
# This overlay provides a set of customized pkgs.
2018-02-20 13:20:44 +02:00
self: super:
{
2019-09-28 14:05:25 +03:00
iosevka-hskl = super.iosevka.override {
2019-09-25 11:10:54 +03: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 18:02:06 +03:00
};
2019-09-25 11:10:54 +03:00
set = "Samae";
};
2019-04-30 18:02:06 +03:00
2019-07-18 22:07:39 +03:00
wineNoGS = super.wineStaging.override { gstreamerSupport = false; };
2020-02-09 14:38:35 +02:00
surge-samae = super.callPackage ./surge {};
2020-02-09 11:26:45 +02:00
2020-02-09 18:15:44 +02:00
carla-samae = super.qt5.callPackage ./carla {};
2020-02-09 17:51:30 +02:00
2018-02-20 13:27:46 +02:00
vim-samae = super.callPackage ./vim {};
2018-02-20 13:20:44 +02:00
2019-05-14 21:54:45 +03:00
reaper-samae = super.callPackage ./reaper {};
2020-02-24 14:36:11 +02:00
mopidy-mpd-samae = super.callPackage ./mopidy-mpd {};
2018-04-20 21:35:19 +03:00
scientifica-font = super.callPackage ./scientifica-font {};
2018-06-24 19:19:07 +03:00
curie-font = super.callPackage ./curie-font {};
2019-07-13 11:05:12 +03:00
victor-mono = super.callPackage ./victor-mono {};
2018-04-20 21:26:44 +03:00
2018-02-23 15:41:11 +02:00
ripmime = super.ripmime.override {
stdenv = super.overrideCC super.stdenv super.gcc6;
};
2019-04-30 18:02:06 +03:00
2020-07-25 16:10:46 +03:00
squeezer = super.callPackage ./squeezer {};
2018-06-01 10:21:56 +03:00
# Originally from Mats Rauhala ®2018
copy = super.writeScriptBin "copy" ''
function clean() {
sleep 10
2019-06-03 09:11:50 +03:00
${super.libnotify}/bin/notify-send -u low 'Clipboard cleaned'
2018-06-01 10:21:56 +03:00
${super.xclip}/bin/xclip -sel clipboard -i /dev/null
}
${super.xclip}/bin/xclip -sel clipboard < /dev/stdin
2019-06-03 09:11:50 +03:00
${super.libnotify}/bin/notify-send -u low -t 10000 'Clipboard set'
2018-06-01 10:21:56 +03:00
clean &
'';
2020-08-05 19:47:17 +03:00
2020-08-05 20:22:44 +03:00
myAt = super.writeScriptBin "at" ''
2020-08-05 19:47:17 +03: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 13:20:44 +02:00
}